C++
贤时间
天通苑软肋研究员
展开
-
C语言第三天
while(i{ break;//跳出循环}实现死循环的两种方式死循环1: while(1)死循环2:for(;;)-----------------------swichswitch(条件){ case:1 break;注意问题,变量定义的时候一定要初始化,避免随机读入内存数据 !!!!!!!!case 分支加不加break的作用 加上,执行一个后就跳出,原创 2015-11-25 09:54:02 · 292 阅读 · 0 评论 -
day05笔记
文件 read宏结构体5号:开始C++的内容 类 类的继承 容器11号:迭代器文件的读写:读: fopen 有顺序,必须按照一个字节一个字节的读 用数组来存放 要统计读出的文件大小用sizeof()函数 用fgets来读,得到文件的大小 printf("%s\n",str); 向文件中原创 2015-11-25 09:54:07 · 277 阅读 · 0 评论 -
day06笔记
C++包含整个C,代码错误会逐渐增多C语言是面向过程的C++特性:支持面向对象支持泛型编程支持异常运算符重载流:iostream输入输出流fstream文件流string字符流在C++编写的头文件中不用再写.h继续使用#include //需要使用名字空间来存放我们的程序using namespase std; //系统定义的名字空间int main(){ //cout //cin>>原创 2015-11-25 09:54:10 · 330 阅读 · 0 评论 -
C++之day07:参数初始化表(构造函数加冒号)girl.cpp
#includeusing namespace std;/***成员列表初始化*/class Girl{private: string m_strName; bool m_bBf;//单身否 0 1 int m_nAge;public: Girl(void); Girl(string strName,bool bBf,int nAge); void Show(void) { cout }};//原创 2015-11-25 09:54:15 · 293 阅读 · 0 评论 -
day04笔记
数组:二维数组:x,y坐标a[4][4](行和列) //4行 4列矩阵1 0 0 0 =》{1}0 1 0 0 =》{0,1}0 0 1 0 =》{0,0,1}0 0 0 1 =》{0,0,0,1}a[0][0]=1实例--列数组相乘:a[][3]b[][3]#includeint main(){ int a[][3]={{1,2,3},{4,5,原创 2015-11-25 09:54:04 · 252 阅读 · 0 评论 -
day07-C++时间函数local的运用
#include#include#include#includeusing namespace std;class Clock{private: int m_nHour; int m_nMinute; int m_nSecond;//public: void Tick(void) { sleep(1); if(++m_nSecond==60) { m_nSecond=0; if(++原创 2015-11-25 09:54:12 · 438 阅读 · 0 评论 -
C++-day07-指向对象的指针-student.cpp
#include/***指向对象的指针*/using namespace std;class Student{private: string name; int age;public: //因为有了析构函数,所以我们在写共有函数的时候尽量把无参数构造加上 Student() { cout }//构造最好加上 ~Student() { cout } Student(string n,int a)原创 2015-11-25 09:54:18 · 306 阅读 · 0 评论 -
C++-day07-算法,求1000内素数
#includeusing namespace std;//算法求素数1000之内int main(){ int i,n; for(n=1;n { for(i=2;i { if(n%i==0) { break; } } if(i>n-1) cout } cout return 0;}原创 2015-11-25 09:54:21 · 576 阅读 · 0 评论