frog.raindrop.jp

.knowledge
::March 2005

SUN MON TUE WED THU FRI SAT
    1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31    

B L O G T I M E S

Prev: February 2005

Next: April 2005

Last Modified
July 10, 2009 05:06 PM

Search



あわせて読みたいブログパーツ
RSS feed meter for http://frog.raindrop.jp/
counter
< February 2005 | April 2005 >

March 30, 2005

VC++ .NET と、メンバ関数テンプレート

Visual Studio .NET は大変使い勝手が気にいっていないが、ひとつ感動した点。

これがコンパイルできるようになった。

class CanCastAnytype
{
public:
	template <typename _anytype> operator _anytype() const
	{ return reinterpret_cast<_anytype>( *m_pValue ); }
protected:
	void	*m_pValue;
};

メンバ関数テンプレートである。これなら、Effective C++ に出てくる、万能 NULL クラスも使えちゃう♥ やったあ。

March 28, 2005

C# プログラマーズ リファレンス

MSDN のもの