讀書心得 - C++ Primer (5th Edition) - Chapter 4 (3) - 常用詞彙 常用詞彙 arithmetic conversion A conversion from one arithmetic type to another. In the context of the binary arithmetic operators, arithmetic conversions... Read More
讀書心得 - C++ Primer (5th Edition) - Chapter 4 (2) - Type Conversions Type Conversions Implicit Conversions 型別轉換,大部分轉換都是看是否能轉換成 int,例如 char, bool, 和 short。 bool flag; char cval; short sval; unsigned short usval; int... Read More
讀書心得 - C++ Primer (5th Edition) - Chapter 4 (1) - Expression & Operator Expression 運算式 (expression) 由運算元 (operand) 與運算子 (operator) 所組成,最終計算產生一個結果 (result)。 Order of Evaluation 想要計算 expression 的話,就必須知道運算子運作及其先後順序。這裡的 * 號就不是 pointer 而是相乘,然後再來是基本的先乘除後加減。 ... Read More
C++ Primer (5th Edition) 總覽 讀書心得 - C++ Primer (5th Edition) - Chapter 1 讀書心得 - C++ Primer (5th Edition) - Chapter 2 (1) - Primitive Types 讀書心得 - C++ Primer (5th Edition) - Chapter 2 (2) - Const 讀書心得 - C++ Primer (5th Edition) - Chapter 2 (3) - Type Aliases 讀書心得 - C++ Primer (5th Edition) - Chapter... Read More
讀書心得 - C++ Primer (5th Edition) - Chapter 3 (4) - 常用詞彙 常用詞彙 buffer overflow Serious programming bug that results when we use an index that is out-of-range for a container, such as a string, vector, or... Read More
讀書心得 - C++ Primer (5th Edition) - Chapter 3 (3) - Array Array Array 為資料結構且跟 Vector 很像,都是裝同一 Type object 的 container。但 Array 為固定大小,所以不能增加 element,但也因為如此有時能提供較好的 run-time performance。 Initialize 在 C++ 裡 Array 的 Size 要為 constant expression,也就是... Read More
讀書心得 - C++ Primer (5th Edition) - Chapter 3 (2) - Vector Library - vector Intro vector 是物件的集合,集合裡的物件都是同一 type,且每個物件都有 index 可以用找到該物件。vector 也是 container 和 class template 的一種。 vector<int> ivec; // ivec holds objects... Read More
讀書心得 - C++ Primer (5th Edition) - Chapter 3 (1) - Namespace Namespace - using declaration 為了讀取 stdin,程式碼會是 std::cin。 :: 的左邊是告訴 compiler 去哪個 scope 找右邊的 operand。這有時會造成程式碼過於冗長,所以有了 using declaration 讓你更簡單的呼叫 namespace 底下的成員。 #include <iostream> ... Read More
網頁開發筆記 重新踏入網頁開發 重新踏入網頁開發 (1) - Nodejs 重新踏入網頁開發 (2) - ES6 重新踏入網頁開發 (3) - Route 重新踏入網頁開發 (4) - Dependency injection 重新踏入網頁開發 (5) - Blocking & Non-Blocking 重新踏入網頁開發 (6) - Express - 2 重新踏入網頁開發 (6) - Express - 3 重新踏入網頁開發 (6) - Express - 4 重新踏入網頁開發 (6)... Read More