C++学习1(与C的差别)
1.C++头文件不必是.c结尾,C语言中的标准库头文件入math.h,stdio.h在C++被命名为cmath,cstdio。#include<cmath>#include<cstdio>2.名字空间namespace为防止名字冲突,引入名字空间。通过::运算符限定某个名字属于哪个名字空间#include <cstdio>namespace first{ int a; void f(){} in