普通C++程式員 VS 文藝C++程式員

來源:互聯網
上載者:User

原貼最初發表在QQ空間:普通C++程式員 VS 文藝C++程式員http://user.qzone.qq.com/31731705/blog/1323153107 

 BBS上看到一個講C++的文章, C++ 這孩子 是不是誤入歧途了?,讓我想起了普通青年和文藝青年。

看這個經典的NB
程式,求一個數有多少bit
。J

普通C++
程式員

namespace traditional { int bits_of(int remain) { if (remain) return 1+bits_of( remain>>1 ); return 0; } int bits_of(void) { return bits_of(~(int)0); } } 

 

文藝C++
程式員

namespace modern { template<int,typename THEN, typename ELSE> struct IF { typedefTHEN type; }; template<typename THEN, typename ELSE> struct IF<0,THEN,ELSE> { typedef ELSE type; }; template<typename T, T X> struct zero { static const Tvalue = X; }; template<typename T, T X> struct bits_of { typedef typenameIF<X, bits_of<T,(X>>1)>, zero<T,0> >::type type; static const Tvalue = type::value + !!X; }; }

還有文青的unit test,

typedef int a0[bits_of<int,0>::value==0? 1: -1];typedef int a1[bits_of<int,1>::value==1? 1: -1];typedef int a2[bits_of<int,2>::value==2? 1: -1];typedef int a3[bits_of<int,3>::value==2? 1: -1];typedef int a4[bits_of<int,4>::value==3? 1: -1];typedef int a7[bits_of<int,7>::value==3? 1: -1];typedef int a8[bits_of<int,8>::value==4? 1: -1];typedef int a15[bits_of<int,15>::value==4? 1: -1];typedef int a16[bits_of<int,16>::value==5? 1: -1];  

第三類C++
程式員

namespace third_party { // 您確定您能看懂?   } 

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.