摘要:
在使用newtonSoft的Json做读取json配置文件信息时,发现会出现中文乱码,出现一堆的问号: using Newtonsoft.Json; using System; using System.IO; using System.Text; namespace CSJsonTest { cl 阅读全文
摘要:
C 语言中assert.h头文件唯一的目的就是提供了assert宏的定义,这个被称为断言,断言的效果是,如果断言的内容为真,断言就没有任何意义,如果断言为假,程序将执行异常终止。 测试代码: #include <stdio.h> #include <assert.h> int main(int ar 阅读全文
摘要:
看手册: The <pwd.h> header shall provide a definition for struct passwd, which shall include at least the following members: char *pw_name User's login n 阅读全文