C++ 基礎速食
適用于:基礎知識差不多忘光,需要快速撿起一些基礎知識的同學。
為了方便學習,也有一些英文筆記。
主要參考這個視頻:Free C++ Course for Beginners ?? - YouTube
(1) #include?<iostream>
參考:<iostream> - C++ Reference (cplusplus.com)
(2) 標點 (英文名稱)
(3) 變量類型 identifier
(4) const?
(5) namespace
(6) typedef
https://www.youtube.com/watch?v=9guJVmDyFmE
(7) arithmetic operators
(8) type conversion 類型轉化
(9) cout & cin
(10) math-related function
(11) if
(12) switch
(13)?ternary operator 三元運算符
(14)?logical opetaters 邏輯算符
(15)??string method:? .length() 及 ?.empty() 及 ?.clear() ? 及 .append() 及 .at() 及 .insert() 及 ?.find() 及 .erase()
(16)?while loop
(17)?do while loop
(18)?for loop
(19)?nested loops
(20)?random numbers ?rand() ? srand()
(21)?random event generator
(22)?function
(23)?return keyword
(24)?overloaded function
(25)?variable scope
(26)?Array
(27)?sizeof() operator
(28)?foreach loop
(29)?Pass array to a function
(30)?search an array for an element
(31)?fill function
(32)?multidimensional array
(33)?memory address
(34)?value pass by value vs. by reference
(35)?const parameter ?const keyword
(36)?pointers
(37)?NULL value
(38)?dynamic memory
(39)?recursion
(40)?function template
(41)?struct
(42)?pass struct to function
(43)?enums 枚舉
(44)?object-oriented programming
(45)?constructor
(46)?overloaded constructors
(47)?getters & setters
(48)?inheritance
the end.