摘要:
在下载时,往网址链接加入libproxy1.nus.edu.sg,就是NUS的权限,如果能下就说明NUS有权限,否则不能。下载博士论文:图书馆->databases->P (从A-Z一排字母中选P)->ProQuest按照名字下载文献:web of science isi:http://apps.webofknowledge.com带NUS权限的:http://apps.webofknowledge.com.libproxy1.nus.edu.sg 阅读全文
摘要:
ifstream in("test.txt"); vector vs; string s; while(!in.eof()) { in>>s; vs.push_back(s); }这样的结果是用空格区别test.txt中的元素,然后逐个存储在vector中,直至文件的末端。 阅读全文
摘要:
可以用atof()这个函数,但是这个函数的参数是char*类型的,因此需将string类型强制转换,方法为在函数的参数中写成const_cast(str.c_str())string str = "1.26";double d = atof(const_cast(str.c_str())); 阅读全文