C++入门与第一个C++程序
C++由Bjarne Stroustrup于1979年创建,在C语言基础上增加了面向对象编程。
C++ vs C对比: | cin/cout替代scanf/printf | string类替代char[] | new/delete替代malloc/free | 提供类/继承/多态 | 支持函数重载和模板 | 强大的STL标准库 |
编译:g++ -std=c++17 hello.cpp -o hello
CODE 0
cin/cout: cin>>name; cout<<"你好,"<<name<<endl;