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

https://www.tsingfun.com/ilife/relax/491.html 

我就这么想到了C# - 轻松一刻 - 清泛网 - 专注C/C++及内核技术

我就这么想到了C#今天一位同事问我新建文件夹的时候,能不能包含 字符于是,我就想到了C#。今天一位同事问我新建文件夹的时候,能不能包含“#”字符 于是,我就想到了C#。 C# .net
https://www.tsingfun.com/it/cpp/1489.html 

const char *, char const *, char * const 异同?const修饰符各位置有何区...

...饰符各位置有何区别?const char * p = new char('a'); 这个是常字符,即p的内容不能被修改。char const * p 意义同上,没有区别。 这时,*...const char * p = new char('a'); 这个是常字符,即p的内容不能被修改。 char const * p 意义同上,没有...
https://www.tsingfun.com/it/cpp/1523.html 

C++程序结果出现1.#inf 1.#IO - C/C++ - 清泛网 - 专注C/C++及内核技术

...数越界了(超过FLT_MAX最大值了),1.#IO是%lf格式化出来的字符串。极可能原因:除0了,也就是f1 = f2 0。做任何除法...表象原因:浮点数越界了(超过FLT_MAX最大值了),1.#IO是 %lf 格式化出来的字符串。 极可能原因:除0了,也...
https://www.tsingfun.com/it/cpp/1821.html 

常用C函数的Unicode兼容函数(持续更新) - C/C++ - 清泛网 - 专注C/C++及内核技术

...rintfstrcat_tcscat(_tcscat_s)strcmpi 是stricmp的宏定义比较两个字符串... C 函数 Unicode版本 fprintf _ftprintf access _taccess sprintf _stprintf strcat _tcscat(_tcscat_s) strcmpi 是 stricmp 的 宏定义 比较两个...
https://www.tsingfun.com/it/cpp/2033.html 

atol 头文件 - C/C++ - 清泛网 - 专注C/C++及内核技术

atol 头文件#include <stdlib>函数名:atol功能: 把字符串转换成长整型数用法: longatol(const char *nptr);程序例:#include <stdlib.h> #includ...#include <stdlib.h> 函数名: atol 功 能: 把字符串转换成长整型数 用 法: long atol(const char *nptr); 实例: ...
https://www.tsingfun.com/it/cpp/2038.html 

error C2440: \'initializing\' : cannot convert from \'char *\' to \'co...

...erpret_cast, C-style cast or function-style cast //输出一行中所有字符 void printchar(string &line) { istringstream iss(line); string word; while(iss>>word) for(vector<string>::const_iterator itbegin=word.begin(),itend=word.end();itbegin != itend; ++i...
https://www.tsingfun.com/it/cpp/2179.html 

SetWindowsLong、SetClassLong 的区别 - C/C++ - 清泛网 - 专注C/C++及内核技术

...YLE:替换窗口类的风格位。   CGL_MENUNAME :替换菜单名字符串的地址。该字符串标识与类有关的菜单资源。   GCL_WNDPROC :替换与窗口类有关的窗口过程的地址。   dwNewLong:指定的替换值。 两者的共同是少部分。 ...
https://www.tsingfun.com/it/bigdata_ai/1800.html 

C# 操作MongoDb插入、更新、查询 - 大数据 & AI - 清泛网 - 专注C/C++及内核技术

C# 操作MongoDb插入、更新、查询Mongo连接字符串形式:mongodb: 127.0.0.1:27017 插入或更新一条记录BsonDocument doc = new BsonDocument();...MongoServer serv...Mongo连接字符串形式:mongodb://127.0.0.1:27017 // 插入或更新一条记录 BsonDocument doc = new Bso...
https://www.tsingfun.com/it/tech/726.html 

正则表达式中 /i,/g,/m,/s,/e,/x 的含义 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...的区别和含义 i (忽略大小写) g (全文查找出现的所有匹配字符) m (多行查找) gi(全文查找、忽略大小写) ig...正则表达式中 /i,/g,/m,/x,/e,/x 的含义: /i (忽略大小写) /g (全文查找出现的所有匹配字符) /m (多行查找) /s 与/m相,单...
https://www.tsingfun.com/it/tech/1046.html 

手把手教你用Strace诊断问题 - 更多技术 - 清泛网 - 专注C/C++及内核技术

... strace 挂上去看看,不过当你挂上去了,看着满屏翻滚的字符,却十有八九看不出个所以然。本文通过一个简单的案例,向你展示一下在用 strace 诊断问题时的一些套路。 如下真实案例,如有雷同,实属必然!让我们看一台高负...