儒雅自行车

文章
3
资源
0
加入时间
3年1月11天

Python的关键字

python3.3.2中的关键字如下:False class finally is returnNone continue for lambda tryTrue def from nonlocal whileand del global ...

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