std::pair用法
摘要:
#include #include #include using namespace std; int main () { pair product1 ("tomatoes",3.25); pair product2; pair product3; product2.first = "lightbulbs"; // type of first is stri... 阅读全文
posted @ 2010-11-01 09:49 flydream 阅读(8640) 评论(1) 推荐(0) 编辑