fatal error C1083: Cannot open include file: 'Match.h': No such file or directory
执行 cl.exe 时出错.
谁能帮我
执行 cl.exe 时出错.
谁能帮我
2015-12-11
楼下的理解错了。如:int i = 0;
cout<<++i<<endl; //这个时候,i的值是1,先+1在打印
cout<<i++<<endl; //这个时候, i的值还是1,先打印在+1
cout<<i<<endl; //这个时候,i的值是2
cout<<++i<<endl; //这个时候,i的值是1,先+1在打印
cout<<i++<<endl; //这个时候, i的值还是1,先打印在+1
cout<<i<<endl; //这个时候,i的值是2
2015-12-10
虽然对于新版C++的标准介绍的比较少,不过,还是能学到很多。给老师一个赞,希望以后,再做视频的同时,可以更好的支持新的标准。
2015-12-02
前面的代码有问题 怎么不能删评论啊= =!
template<typename T>
void func(T &a,T &b)
{
T temp = a;
a = b;
b = temp;
}
template<typename T>
void func(T &a,T &b)
{
T temp = a;
a = b;
b = temp;
}
没有啊 我就是class过的
template<class T>
void func(T a,T b)
{
T temp = a;
a = b;
b = temp;
}
template<class T>
void func(T a,T b)
{
T temp = a;
a = b;
b = temp;
}