码迷,mamicode.com
首页 > 编程语言 > 详细

【c++ 重载】

时间:2014-09-28 23:00:35      阅读:288      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   for   sp   

重载"[]":

bubuko.com,布布扣
 1 #include <iostream>
 2 #include <string>
 3 using namespace std;
 4 struct Node{
 5     #define N 1000
 6     int data[N], cnt;
 7     string s[N];
 8     Node(int c = 0):cnt(c){}
 9     int &operator[](string str) {
10         for(int i = 1; i <= cnt; i++) {
11             if(s[i] == str) {
12                 return data[i];
13             }
14         }
15         data[++cnt] = 0;
16         s[cnt] = str;
17         return data[cnt];
18     }
19 };
20 int main()
21 {
22     Node a;
23     a["abc"] = 1;
24     a["ab"] = 2;
25     cout<< a["a"] <<endl<< a["ab"]<< endl<< a["abc"]<< endl;
26 }
27 //结果:
28 //0
29 //2
30 //1
View Code

 

【c++ 重载】

标签:style   blog   http   color   io   os   ar   for   sp   

原文地址:http://www.cnblogs.com/jklongint/p/3999006.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!