码迷,mamicode.com
首页 > 其他好文 > 详细

cout

时间:2017-11-16 22:10:36      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:operator   print   opera   hello   std   str   include   bsp   const   

 1 #include <stdio.h>
 2 
 3 class MyOut
 4 {
 5 public:
 6     const MyOut& operator<<(int value) const
 7     {
 8         printf("%d", value);
 9         return *this;
10     }
11 
12     const MyOut& operator<<(char *value) const
13     {
14         printf("%s", value);
15         return *this;
16     }
17 };
18 
19 MyOut out;
20 
21 int main()
22 {
23     char str[] = "HelloWorld\n";
24     int a = 10;
25     out << str << a;
26     return 0;
27 }

 

cout

标签:operator   print   opera   hello   std   str   include   bsp   const   

原文地址:http://www.cnblogs.com/nosit/p/7846285.html

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