c++
wyfever
这个作者很懒,什么都没留下…
展开
-
strcat()拼接字符串出错原因
strcat使用中可能存在的一些问题原创 2022-08-20 20:44:35 · 2314 阅读 · 0 评论 -
关于C++中指针与引用的关系
#include <iostream>using namespace std;int main(){ int a = 9; int b = 10; int* p = &a; int &refa = a; cout<<" 1 " <<endl; cout << "a = " << a << " "<<" a地址 = "<< &.原创 2021-12-13 17:11:16 · 906 阅读 · 0 评论 -
使用vector list等容器对字符串的排序
#include <iostream>#include <string>#include <set>#include <list>#include <vector>#include <iterator>#include <algorithm>using namespace std;string & toLower(string &st);void output(string n){原创 2016-09-28 10:38:07 · 873 阅读 · 0 评论 -
undefined reference to 错误的解决方法总结
在编写C++时,会遇到一类错误的错。总结起来为几类一、是 Linux环境错误 具体没有深入研究,可以参考http://blog.csdn.net/cserchen/article/details/5503556。二、使用codeblock这类需要自己配置路径,要把所有文件添加到Build target中。配置方法参考下面两个博客: http://blog.csdn.原创 2016-09-29 13:19:35 · 6013 阅读 · 0 评论