2007-09-24から1日間の記事一覧

ifとswitchの処理時間(C++)

同じことを実行するプログラムでも、条件判断「if」と「switch」で処理時間が違いますよというお話。 1. ifを使ったサンプルプログラム #include "stdafx.h" int a = 3, b = 0; int _tmain(int argc, _TCHAR* argv[]) { if ( a == 0 ) b = 1; if ( a == 1 ) …

匿名ブラウザ「xB Browser」

xB Browser is the free anonymous web browser. You're just a click away from anonymous surfing right now! The benefits of xB Browser is that it allows you to securely and anonymously surf the internet, bypass firewalls and website censorshi…

Visual C++ 2005 Express Editionでアセンブリコードを出力する

C++ソースコードとアセンブリの対応関係を知りたい(勉強したい)と思い、Visual C++ 2005 Express Editionをインストールしたが、 デフォルトではアセンブリコードは出力しない設定となっている。 ということで、アセンブリコードを出力するように設定した。 …