c/c++
文章平均质量分 65
codeHappy
这个作者很懒,什么都没留下…
展开
-
Bjarne Stroustrup的FAQ:C++的风格与技巧(转载)
Bjarne Stroustrup的FAQ:C++的风格与技巧翻译:左轻侯 (译注:本文的翻译相当艰苦。Bjarne Stroustrup不愧是创立C++语言的一代大师,不但思想博大精深,而且在遣词造句上,也非常精微深奥。有很多地方,译者反复斟酌,都不能取得理想的效果,只能尽力而为。Html格式的文档见译者主页:http://www.wushuang原创 2005-10-22 23:23:00 · 1264 阅读 · 0 评论 -
静态成员的例子
静态成员的例子,每个对象都能共享静态成员,并且能访问它,静态成员不会随着对象的产生而分配,或随着对象的消失而丢失.静态数据成员不能在任何函数内分配空间和初始化.#include "stdafx.h"using namespace std;class Account{public: void onePush(int x) { oneAccount+=x;原创 2005-10-12 18:34:00 · 1088 阅读 · 0 评论 -
exit()的使用
在main函数中我们通常使用return (0);这样的方式返回一个值。exit()通常是用在子程序中用来终结程序用的,使用后程序自动结束跳会操作系统。 但在如果把exit用在main内的时候无论main是否定义成void返回的值都是有效的,并且exit不需要考虑类型,exit(1)等价于return (1).#include iostream> #include string> using原创 2005-10-15 20:40:00 · 1448 阅读 · 0 评论 -
类实现线性链表
LinkList.cpp:*********************************************************************************************************************#include#include"ListClass.h"void main(){ int insertPostion,insertN原创 2005-10-22 22:00:00 · 1129 阅读 · 0 评论 -
塔罗牌生日密码占卜
// forecastyou.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"using namespace std;int sum(unsigned long);int printf(int);void main(){ unsigned long inputNum; int sum1; char choice; cout cout原创 2005-10-22 22:59:00 · 2583 阅读 · 0 评论 -
行输入输出
#include "stdafx.h"using namespace std;int _tmain(int argc, _TCHAR* argv[]){ char a[100]; gets(a); cout cout char b[100]; cin.getline(b,sizeof(b)); puts(b);//cout retur原创 2005-10-14 22:57:00 · 1178 阅读 · 0 评论 -
文曲星上猜数字游戏
// guessNumber.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include using namespace std;void guess( int randomNum[4]);int n=0;void main(){ cout cout cout int randomNum[4],temp[10],randomSum,n原创 2005-10-14 23:49:00 · 2347 阅读 · 0 评论 -
栈的拷贝构造
class Stack{private: struct node { int data; node *next; }*top,*temp; static int stackNum;public: Stack() { top=NULL; stackNum++; } Stack(Stack& p)原创 2005-11-11 22:26:00 · 1375 阅读 · 0 评论