2007-12-16から1日間の記事一覧

理想の仮想デスクトップソフトを求めて

Windows用、Vista対応 10面程度のデスクトップを使用可能 「デスクトップnに切り替え」のショートカットを設定可能 「アクティブウィンドウをデスクトップnに移動」のショートカットを設定可能 そんなに無茶な要求じゃないと思うでしょ。でもなかなかないん…

暗黙のエラーチェックを実現する

c++

動機 APIなんかで、よく bool GetSomeValue(type param1,type param2,type* result); 式の関数を見かける。引数で結果を格納する場所を渡し、「成功したかどうか」を返値とするやつ。 エラー処理をまじめにやると bool result; type value; result=GetSomeVa…

コピーコンストラクタと暗黙の型変換、関数オーバロードの解決、優先順位

c++

src #include <iostream> using namespace std; struct test { test(bool) {cout << "test(bool)" << endl;} test(const test&) {cout << "test(const test&)" << endl;} operator bool() {return true;} }; int main() { cout<<"bool b=test(true)"<</iostream>