Essential C++
wind00sky
这个作者很懒,什么都没留下…
展开
-
4.10 Providing Class Instances of the iostream Operators
// [3/2/2009 wind]/************************************************************************//* Essential C++ P128 *//**************************原创 2009-03-02 16:05:00 · 482 阅读 · 0 评论 -
Essential C++ 1.5节例子
#include "stdafx.h"#include #include using namespace std;//用来遍历所有的VECTORvoid visit_vector( const vector & v ){ for( int i = 0; i < v.size(); i ++ ) { cout<<v[ i ]<<endl; }}i原创 2009-05-21 23:03:00 · 603 阅读 · 0 评论 -
1.6 pointer allow for flexibility
// Es1.7.cpp : 定义控制台应用程序的入口点。////用指针来操作六个VECTOR的数列#include "stdafx.h"#include #include #include #include using namespace std;//遍历VECTOR,传递过来的是指向VECTOR的指针void visit_vector( const ve原创 2009-05-25 21:56:00 · 731 阅读 · 0 评论 -
1.7writing and reading files
// Ess1.7.cpp : 定义控制台应用程序的入口点。// #include "stdafx.h"#include #include #include #include using namespace std; int _tmain(int argc, _TCHAR* argv[]){ //ofstream outfile("seq原创 2009-05-25 23:20:00 · 479 阅读 · 0 评论