А вот так мы инициализируем переменные =)
Date: 10/31/06
(Code WTF) Keywords: no keywords
template struct Null { operator T* const () { delete this; return reinterpret_cast(NULL); } }; ...
CMyClass *pTest = *(new Null);
гораздо симпатичнее, чем просто CMyClass *pTest = NULL; =)
Source: http://community.livejournal.com/code_wtf/57411.html
|