大约有 6,000 项符合查询结果(耗时:0.0108秒) [XML]

https://www.tsingfun.com/it/cpp/1300.html 

Win32 创建控件风格不是Win XP的解决方案 - C/C++ - 清泛网 - 专注C/C++及内核技术

...在Windows\winsxs目录下面,或者你直接检索:common control,结果如下: 好了,下面说一下解决方案吧: 这个根本办法就是加一个manifest文件,其内容如下: <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly xmlns="urn:schemas-micros...
https://www.tsingfun.com/it/cpp/1372.html 

Boost智能指针——shared_ptr - C/C++ - 清泛网 - 专注C/C++及内核技术

...ter Reset sp2.\n"; } void main() { test(); } 该程序的输出结果如下: The Sample now has 1 references The Sample now has 2 references After Reset sp1. The Sample now has 1 references destroying implementation After Reset sp2. 可以看到,boost::shared_ptr指针sp1和s...
https://www.tsingfun.com/it/cpp/1434.html 

stl 字符串std::string作为std::map主键key的实例 - C/C++ - 清泛网 - 专注C/C++及内核技术

... it->first.c_str(), it->second.c_str()); return 0; } 运行结果: stl map
https://www.tsingfun.com/it/cpp/1478.html 

xpath路径表达式笔记 - C/C++ - 清泛网 - 专注C/C++及内核技术

...大于35。 [例15] /bookstore/book[price>35.00]/title :表示在例14结果集中,选择title子元素。 [例16] /bookstore/book/price[.>35.00] :表示选择值大于35的"/bookstore/book"的price子元素。 五、通配符 # "*"表示匹配任何元素节点。 # "@*"表示...
https://www.tsingfun.com/it/cpp/1492.html 

vc/mfc *通配符 批量删除文件 - C/C++ - 清泛网 - 专注C/C++及内核技术

... 补充: 不过SHFileOperation方法有时不起作用,用起来结果飘忽不定,详见:http://bbs.csdn.net/topics/390691058 路径末尾加上'\0'也一样,笔者亲测,删除有时成功有时失败。 改用C++的FindNextFile,支持 * 通配符查找文件,核心代...
https://www.tsingfun.com/it/cpp/1502.html 

%d,%c,%s,%x等转换符 释义 - C/C++ - 清泛网 - 专注C/C++及内核技术

...前缀o;对x类,在输出时加前缀0x; 对e,g,f 类当结果有小数时才给出小数点。 3.格式字符串(格式) 〔标志〕〔输出最少宽度〕〔.精度〕〔长度〕类型 "%-md" :左对齐,若m比实际少时,按实际输出。 ...
https://www.tsingfun.com/it/cpp/1533.html 

64 bit OS下int占几个字节? - C/C++ - 清泛网 - 专注C/C++及内核技术

...emo稍微验证下即可,结论:无论32/64位编译器、32/64位OS,结果都是4。 只与编译器位数有关,与OS位数无关,但64位程序不能运行在32位OS上。64bit int 字节
https://www.tsingfun.com/it/cpp/1559.html 

MFC中使用CSplitterWnd分割窗口后视图大小的问题 - C/C++ - 清泛网 - 专注C/C++及内核技术

...,但是在通过createView(...)设置大小时,往往起不到想要的结果。 CSize sizeDummy; m_wndSplitterH.CreateStatic(this, 2, 1); if (!m_wndSplitterH.CreateView(0, 0, RUNTIME_CLASS(CGraphFrame), sizeDummy, pContext)) 这时,你可以: 1、设置一下m_wndSplitterH的SetRow...
https://www.tsingfun.com/it/cpp/1823.html 

Linux automake自动编译全攻略 - C/C++ - 清泛网 - 专注C/C++及内核技术

... printf("sum:%d\n", sum); return 0; } 编译及执行结果: 执行: 代码点此下载:automake.zip Linux automake 自动编译
https://www.tsingfun.com/it/cpp/1950.html 

C/C++ 如何向上取整? - C/C++ - 清泛网 - 专注C/C++及内核技术

... //补整方法 printf("%d\n", (a + b-1) / b); return 0; } 运行结果: 注意:ceil函数参数是double类型。同理,double向下取整使用floor函数(整数直接除就ok)。 使用floor函数。floor(x)返回的是小于或等于x的最大整数。 如: flo...