关于c++:HackingC-机翻阅读记录-Chapter2InputOutput

36次阅读

共计 361 个字符,预计需要花费 1 分钟才能阅读完成。

集体笔记向 +google 机翻 (机翻的确很多细节形容不清,看不懂记得参考原文)
原文参见:https://hackingcpp.com/cpp/be…

Input&Output

1.Command Line Arguments 命令行参数

  • What &Why
  • How to Access in C++
int main (int const argc, char const* argv/*a pointer to a constant char*/) {
  • Argument Conversion
  • Conversion to std::string, int, …
  • String → Number Conversion Functions

2.File Input&Output 文件输入输出

3.Stream Input&Output 流输入输出

4.Recover From Input Error 从输出谬误中复原

正文完
 0