いろきゅうの(元)はてなダイアリー

はてなダイアリーから移行中…

2005-09-19から1日間の記事一覧

templateに悩んで…

template int Func(){ return 0; } template<> int Func(){ return 0; } // 特殊化OK template int Func(){ return 0; } template int Func(){ return 0; } // C2768: 明示的なテンプレート引数はアカン! template int Func() { return 0; } template<> int…

_fgettc の戻り値の型は?

fgetc/fgetwc と getchar/getwchar なんつー関数があり、ASCII/UNICODEを切り替える為の _fgettc, _gettchar があったりします。 それはいいんですが、fgetc/fgetwc (そして getchar/getwchar)って、戻り値の型が int/wint_t(unsigned short) という感じで…

危険なコード

void threadFunc(void*) { std::string strString = "にょ"; // リーク!! _endthread(); } int main() { _beginthread(threadFunc, 0, NULL); // メインスレッドは適当に待ってにょ。 ::Sleep(256); return 0; }このコードは strString がメモリリークします…