摘要:
#1.点击扳手配置 ![](https://img2023.cnblogs.com/blog/3017398/202308/3017398-20230802184721060-119601759.png) #2.点击Colors & Fonts,选择其中的8051:Editor C Files,选择 阅读全文
摘要:
#1.先要生成相应文件 ![](https://img2023.cnblogs.com/blog/3017398/202308/3017398-20230801161607839-847911115.png) #2.打开VS2019开发人员工具 ![](https://img2023.cnblogs 阅读全文
摘要:
#1.问题 C4996 'strdup': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strdup. See online help for details 阅读全文
摘要:
在这里初始化列表直接用age(age)即可,用this->age(age)反而会出错,C++不允许在成员初始化列表中使用this关键字来初始化类成员 ~~~C++ class Person { public: Person(int age) : age(age) {} // Initialize t 阅读全文
摘要:
参考原文:https://www.cnblogs.com/bemfa/p/13390251.html 下载地址:https://wwtl.lanzoum.com/ik0Ky1clu41a B站关联学习APP Inventor Wifi模块视频:https://www.bilibili.com/vid 阅读全文
摘要:
#1.问题 在单例模式中初始化单例对象Person* Person::signal= new Person; 这一步在类外,而new Person需要调用私有的无参构造,但是只有在类内部才能调用私有函数,这里是不是矛盾了? ~~~C++ #define _CRT_SECURE_NO_WARNINGS 阅读全文
摘要:
#1.问题 1.使用HTTP方式:Git: fatal: unable to access ' https://github. com/Light-City/CPlusPlusThings. git/': OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 1005 阅读全文
摘要:
1.当传递常量字符串给 char* 类型的形参时,C++ 编译器可能会发出警告,因为 char* 可以用于修改字符串内容。而使用 const char* 类型,则指示调用者不应该修改传入的字符串内容,从而避免了可能的副作用。 2.在构造函数中使用 const char* 参数类型还有一个优点,它可以 阅读全文
摘要:
strlen 和 sizeof 是 C/C++ 中用于获取字符串长度或数据类型大小的两个不同的操作。 1.strlen: - strlen 是在 C 语言和 C++ 中用于获取以空字符 ('\0') 结尾的字符串长度的函数。 - 它接受一个指向字符串的指针,并遍历该字符串,直到遇到空字符为止,计算出 阅读全文
摘要:
#1.问题如下: C4996:'strcpy’: This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use_CRT_SECURE_NO_WARNINGS. 阅读全文