07 2019 档案
摘要://c++ http://c.biancheng.net/view/275.html //C https://www.cnblogs.com/mycom/archive/2010/12/05/1897264.html https://www.cnblogs.com/ylbtech/p/3151771
阅读全文
摘要:https://www.cnblogs.com/traeyee/p/4892410.html https://blog.csdn.net/Windgs_YF/article/details/80927058 https://www.cnblogs.com/Braveliu/p/4263145.htm
阅读全文
摘要:SI与codeblocks编码设置 1、以UTF 8格式打开源码文件,并将UTF 8格式作为默认的编码模式。 情况一:源文件的格式为UTF 8(str="中文") codeblocks的打开格式、保存格式、代码解析格式、内码编码格式、与设置一致,解析输出不能看到准确的汉子,这取决操作系统,因为国内w
阅读全文
摘要:iostream与iostream.h 1、iostream是标准的C++库 2、iostream.h是非标准的C++库。如果使用前者,需要搭配using namespace XXX。后者则不需要。 include //非标准输入输出流,没有命名空间的概念 cout //标准输入输出流cout
阅读全文
摘要:(1)直接赋值: int a = 1; (2)初始化列表: int a{1},当用于内置类型的变量时,如果初始值存在丢失信息的风险,编译器将会报错, 如:int a{0.444}
阅读全文
摘要:https://blog.csdn.net/qq844352155/article/details/39050685 https://blog.csdn.net/z_ml118/article/details/78253313 https://www.cnblogs.com/whlook/p/657
阅读全文
摘要:https://blog.csdn.net/zhanghuaichao/article/details/79459130 https://blog.51cto.com/jackyblf/1896360 https://www.runoob.com/design pattern/singleton p
阅读全文
摘要:一、 include include using namespace std; class test { public: test(); void func(int a) { printf("void func(int a)\n"); } void func(char a) { printf("vo
阅读全文
摘要:https://blog.csdn.net/u010183728/article/details/81913729 %C2%A03.3.1%20list%E5%AE%9A%E4%B9%89 https://blog.csdn.net/qq_36779888/article/details/82220
阅读全文