C++ Primer 读书笔记 - 第七章
摘要:
1. To invoke a function we use the call operator, which is a pair of parentheses. The operands to the call operator are the name of the function and a (possibly empty) comma-separated list of arguments.#include <iostream>using namespace std;string::size_type find_char(const string &s, char 阅读全文
posted @ 2013-05-26 12:11 NULL00 阅读(443) 评论(0) 推荐(0) 编辑