标签:ar 使用 art bs html as line size tt
1.Pairs(对组)
(1)class pair可以将两个值视为一个单元。任何函数需返回两个值,也需要pair。
(2)便捷地创建pair对象可以使用make_pair函数
std::make_pair(32,‘@‘)
等价于
std::pair(int,char)(42,‘@‘)
标签:ar 使用 art bs html as line size tt
原文地址:http://www.cnblogs.com/cpointer/p/4133458.html