C++ basic salient points that I made mistakes on
时间:
2016-02-02 06:27:02
阅读:
233
评论:
收藏:
0
[点我收藏+]
- int main(int argv, char* argc[]), argc[0] is always the program‘s name that you run
- switch() statement doesn‘t accept std::string. One way to solve this is to use enum, see here: link
C++ basic salient points that I made mistakes on
原文:http://www.cnblogs.com/RuiYan/p/5176676.html