2008-05-27から1日間の記事一覧

テンプレートパラメータに指定できるもの

C++

テンプレートパラメータにはポインタを指定することができる(cppll:10249 参照) #include <iostream> using namespace std; template <int* Pointer> void foo() { if (Pointer) cout << *Pointer << endl; else cout << "null" << endl; } int value = 3; int main() { foo<&value>(</int*></iostream>…