⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tstio.cpp

📁 SPLASH is a c++ class library that implements many of the Perl constructs and data types, including
💻 CPP
字号:
#include	<fstream.h>
#include	<strstream.h>
#include	<stdlib.h>
#include	"splash.h"
#include	"assoc.h"

ostream& operator<<(ostream &, SPList<int> const &);
istream& operator>>(istream&, SPList<int>&);

void main()
{
ifstream fin("t.txt");
ofstream fout("t2.txt");

SPString s;
SPStringList l;

    while(fin >> s){
	cout << "read in string: " << s << endl;
	fout << s << endl;
    }
    
    fin.close();
    fout.close();
    
    fin.open("t.txt");
    
    fin >> l;
    
    cout << "List =" << endl << l << endl;

#if 1
    strstream ss, iss;
    ss << "one\n" << "two\nthree\nfour\n";
    ss >> l;
    cout << l << endl;
    SPList<int> il;
    iss << 1 << " " << 2 << " " << 3 << " " << 4 << endl;
    iss << "5 6 7 8 9" << endl;
    iss >> il;
    cout << il << endl;
#endif


    cout << "Start Typing:" << endl;
    while(cin >> s){
	cout << "read in string: " << s << endl;
    }

}

#ifdef __GNUC__
template ostream& operator<<(ostream &, SPList<int> const &);
template ostream& operator<<(ostream &, SPList<SPString> const &);
template istream& operator>>(istream&, SPList<int>&);

template class SPList<int>;
template class SPList<SPString>;
template class SPList<Range>;
template class SPListBase<int>;
template class SPListBase<SPString>;
template class SPListBase<Range>;
template class SubList<int>;
template class SubList<SPString>;
template class SubList<Range>;

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -