c++开发 种子列表 c++开发
-
C 二维数组(指针)动态分配和释放
[代码片段] [代码片段] 32位(bit)和64位(bit)系统的指针占的内存不一样,注意B与b不同,B是Byte(字节),b是bit(位) 1GB=1024MB,1MB=1024KB,1KB=1024B,1B=8bit 在32位的系统中,所有指针都占4 bytes。cpu决定内存的编址,如32位CPU有32条地址总线,对应的地址格式为 10 01 .... 01 01 = …阅读全文
-
purecpp社区c++ http库cinatra需求与建议收集
purecpp社区开源的http库 cinatra 已经有不少用户在使用了,我将在下个月开始维护升级cinatra,希望喜欢和关注cinatra的朋友们提出需求和建议,以便在后面完善cinatra。 在本文后面回复需求和建议,请详尽描述,描述不清楚的时候show code, 谢谢。 …阅读全文 -
MXNet C++ Deployment
iOS上的Deployment的sample code, https://github.com/pppoe/WhatsThis-iOS, 介绍: http://haoxiang.org/2016/01/ios-mxnet-demo/ MXNet训练得到的模型有两个文件,XX.json描述网络,XX.params存网络参数。部署的时候最方便的方式是用Amalgamation: https://git …阅读全文 -
My Qt World Summit keynote video is now online
The Qt World Summit videos were just posted, including my talk which was a condensed (40-minute) version of my CppCon 2017 metaclasses talk with some small tweaks for a Qt-specific audience. …阅读全文 -
Interview with InfoQ: C++17, and beyond…
Last week I did an interview by email with InfoQ. It just went live: C++17 is Here: Interview with Herb Sutter Topics include: What parts of C++17 should developers get most ex …阅读全文 -
Vcpkg: Using multiple enlistments
Vcpkg allows you to acquire and build 3 rd party libraries on Windows . Once cloned, the vcpkg directory (enlistment) provides a stable set of libraries that are all compatible and b …阅读全文
-
Visual Studio Code C/C++ extension October 2017 up
点这里看中文版 Yesterday we shipped the October 2017 update of the Visual Studio Code C/C++ extension . Following the lightbulb suggestions for IntelliSense include path feature that was s …阅读全文
-
Eclipse配置C/C++开发环境
开发环境:Eclipse3.2、CDT3.1、MinGW5.1 1、Eclipse及CDT的安装 到Eclipse的官方网站http://www.eclipse.org上下载Eclipse。 安装CDT。CDT的全称是C/C++ DevelopmentTools,是使Eclipse能够支持C/C++开发的插件,保健康。进入CDT的官方网站,http://www/ …阅读全文 -
c++中cin与cout 详解
cin与cout 一:标准输入函数cin 不知道说它是个函数对还是不对,它是代表标准的输入设备-- 键盘。他是属于流的,他的用法和流的用法是一样的。也就是:cin>>变量; 小小的说明一下,输入多个变量可以写在一行,如:cin>>x>>y>>z; 这样写不是不允许,而是不好看,如果是不同的变量类型,那就更 …阅读全文 -
Latest and Greatest in Visual Studio 2017 for C++
Daniel Moth and Steve Carroll shared what’s new in VS 2017 and Updates for C++ developers at CppCon yesterday. You can grab the slides from the talk here , or here in PDF format . …阅读全文