C++
tanyouliang
努力不一定会成功,但不努力一定不会成功,态度决定一切。
展开
-
多态性和虚函数、纯虚函数
#include class people{public: void eat() { cout << "people eat" << endl; } void sleep() { cout << "people sleep" << endl; } void breathe() { cout << "people breathe" <原创 2012-03-22 12:59:28 · 483 阅读 · 0 评论 -
cout格式控制
#include #include using namespace std;int main(){ double price; cout << "price:" << endl; cin >> price; cout << hex << 22 << endl; cout.width(6); cout.fill('*'); cout << pric原创 2012-10-25 16:49:50 · 3603 阅读 · 0 评论 -
在软件开发过程中出现的异常:警告warning、错误error
1.编译我的工程时候,出现fatal error C1010: unexpected end of file while looking for precompiled header directive解决方法:在文件开头添加: #include "stdafx.h" 2.'CDataStream::GetBytes' : illegal call of non原创 2013-11-08 10:15:11 · 3060 阅读 · 0 评论 -
C++运算符优先级记忆
为了方便自己记忆,将几乎所有优先级编成口诀记忆:圆方括号域,箭头一句号位反逻非长强制,正负增减值取地乘除加减再移位,大小等等等不等八位与九位异或,十一二逻辑与或条件赋值后逗号1.圆方括号域,箭头一句号 (),【】,::,->,.1[]数组下标数组名[常量表达式]左到右原创 2015-07-28 17:52:59 · 2930 阅读 · 0 评论