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

cout2

时间:2017-11-16 22:02:32      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:turn   char   include   ons   printf   his   markdown   world   out   


#include <stdio.h>

class MyOut
{
public:
    const MyOut& operator<<(int value) const
    {
        printf("%d", value);
        return *this;
    }

    const MyOut& operator<<(char *value) const
    {
        printf("%s", value);
        return *this;
    }
};

MyOut out;

int main()
{
    char str[] = "HelloWorld\n";
    int a = 10;
    out << str << a;
    return 0;
}

cout2

标签:turn   char   include   ons   printf   his   markdown   world   out   

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

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