2010-12-28から1日間の記事一覧

この発想はなかった

#include "/dev/stdin" http://www.kagami.org/diary/2006-06-11-1.html >「世界一汎用性の高いプログラム」 確かにwww

コンテナ

そういえばコンテナにポインタをいれた場合どうなるんだっけ?と思ったけどあたり前のことだったというおはなし。 #include <iostream> #include <vector> using namespace std; class A { public: A() { cout << "ctor" << endl; } ~A() { cout << "dtor" << endl; } }; int m</vector></iostream>…

boostのバージョン

Boostのバージョンを調べる方法をよく忘れるので自分の備忘録にメモメモ・・・ #include <iostream> #include <boost/version.hpp> using namespace std; int main() { cout << ( BOOST_VERSION / 100000 ) << "." << ( BOOST_VERSION / 100 % 1000 ) << "." << BOOST_VERSION % 100; } ち</boost/version.hpp></iostream>…