2017年3月18日

C++ 函数对象

摘要: 这里记录一个使用函数对象的例子: 1 // ConsoleApplication25.cpp : 定义控制台应用程序的入口点。 2 // 3 4 #include "stdafx.h" 5 #include <vector> 6 #include <string> 7 #include <iostr 阅读全文

posted @ 2017-03-18 14:32 ^~~^ 阅读(255) 评论(1) 推荐(0) 编辑

C++ 操作符重载

摘要: 这里记录一些常见的操作符重载。首先是下标操作符: 头文件定义如下: 1 #pragma once 2 #ifndef __FOO__ 3 #define __FOO__ 4 #include <vector> 5 using namespace std; 6 7 class Foo 8 { 9 pu 阅读全文

posted @ 2017-03-18 10:25 ^~~^ 阅读(344) 评论(0) 推荐(0) 编辑

导航