摘要: const 一般常量:eg:int const x=2 或 const int x=2 两者无区别 对象常量:eg:<类名>const<对象名> 或const<类名><对象名> 两者无区别 常指针: int * const r=&n (r是常量指针,不允许改变,所以:r=m是错误的,*r=1是允许的。) constint *r=&... 阅读全文
posted @ 2009-07-14 10:59 panygu 阅读(254) 评论(0) 推荐(0) 编辑
摘要: fstream class <fstream> Input/output file stream class ios_base ios istream iostream fstream ostream fstreamprovides an interface to read and write data from files as input/output streams.The ob... 阅读全文
posted @ 2009-07-14 10:44 panygu 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 学C++的时候,这几个输入函数弄的有点迷糊;这里做个小结,为了自己复习,也希望对后来者能有所帮助,如果有差错的地方还请各位多多指教(本文所有程序均通过VC 6.0运行)转载请保留作者信息;1、cin1、cin.get()2、cin.getline()3、getline()4、gets()5、getchar()1、cin>>用法1:最基本,也是最常用的用法,输入一个数字:#include... 阅读全文
posted @ 2009-07-14 10:40 panygu 阅读(344) 评论(0) 推荐(0) 编辑