//#include "stdafx.h"
#include #include #include #include #include #include using namespace std;
class even
};int _tmain(int argc, _tchar* argv)
//#include "stdafx.h"
#include #include #include #include #include #include using namespace std;
struct b
;struct d1 : public b
讀書筆記 泛型深究
listl1 new arraylist listl2 new arraylist system.out.println l1.getclass l2.getclass public class test1 public t testmethod1 t t test1t new test1 t.te...
讀書筆記 泛型有限萬用字元
傳送乙個子類物件給宣告了其父類型別的方法,是沒問題的 但是傳送乙個子類物件list給宣告了其父類型別list的方法,是不行的 這個時候,有限萬用字元就可以派上用場,在接受方法的宣告中 list o 123 4567 891011 1213 1415 1617 1819 123 4567 891011...
STL讀書筆記
vector 會自動增長的陣列 list 擅長插入刪除的鍊錶 有黑必有白,世界萬物都是成對出現的。鍊錶對於陣列來說就是相反的存在。陣列本身是沒有動態增長能力的 程式中也必須重新開闢記憶體來實現 而鍊錶強悍的就是動態增長和刪除的能力。但對於陣列強悍的隨機訪問能力來說的話,鍊錶卻很弱。list是乙個雙向...