小試一下
第一次裝boost,雖然知道很久,但是一直沒時間試,今天寫了簡單到爆的程式碼
輸入指令如下#include <boost/array.hpp>
#include <iostream>
#include <algorithm>
int main(){
boost::array<int, 10> a;
for(unsigned int i=0;i<a.size();i++) a[i] = i;
std::copy(a.begin(), a.end(), std::ostream_iterator<int>(std::cout, " "));
std::cout << std::endl;
}
可獲得如下結果g++ -I /usr/local/include/boost-1_36/ test.cpp
0 1 2 3 4 5 6 7 8 9
---
我真無聊XD
5 則留言:
用火狐看的話CODE會凸出格子XD
那是一定的...XD
想看仔細請自行複製貼上,我不會CSS XD
可以使用sytle="overflow: auto;"
哇哈哈,我果然是網頁白癡,加在那都沒有效,我再試試...Orz
終於修正成功了...CSS...Orz
張貼留言