1. 程式人生 > >C++ and OO Num. Comp. Sci. Eng. - Part 2.

C++ and OO Num. Comp. Sci. Eng. - Part 2.

its ted 增加 數字 gin logs markdown 模板函數 mar

本文參考自《C++ and Object-Oriented Numeric Computing for Scientists and Engineers》。

1. Basic Types

在 C++ 中,變量的聲明不必像 C 和 Fortran 一樣放在程序最前方,可以在變量使用前聲明,增加程序可讀性。

C++ 中有布爾類型變量,關鍵字為 bool。

C++ 中標準庫內 numeric_limits 模板函數可以返回不同類型變量的最大值與最小值。

C++ 內標示符要求由字符、數字與下劃線組成,標示符必須以字符或下劃線開頭,字符大小寫是區分的。

C++ and OO Num. Comp. Sci. Eng. - Part 2.