讀書筆記 effective C++ Item 33 避免隱藏繼承而來的名字

  1. 普通作用域中的隱藏 名字實際上和繼承沒有關係。有關係的是作用域。我們都知道像下面的代碼: 1 int x; // global variable 2 3 void someFunc() 4 { 5 double x; // local variable 6 7 std::cin >> x; // read a ne
相關文章
相關標籤/搜索