zoukankan      html  css  js  c++  java
  • C++ class外的 << 重载,输出流,重载示例。不应该定义类内的<<重载

    #include <iostream>
    
    // overloading "operator << " outside class
    // << 应该定义在类之外。
    
    //////////////////////////////////////////////////////////
    
    class Rectangle
    {
    public:
    	Rectangle(int w, int h) 
    		: width(w), height(h)
    	{};
    
    	~Rectangle() {};
    
    public:
    	int width;
    	int height;
    };
    
    
    //////////////////////////////////////////////////////////
    
    std::ostream&
    operator<< (std::ostream& os, const Rectangle& rec) // 这里的 const 是必要的,rec应该是一个常量,请注意
    {
    	os << rec.width << ", " << rec.height;
    	return  os;
    
    }
    
    
    //////////////////////////////////////////////////////////
    
    int main()
    {
    	Rectangle a(40, 10);
    	Rectangle b(41, 11);
    	Rectangle c(42, 12);
    
    	std::cout
    		<< "a = " << a << std::endl
    		<< "b = " << b << std::endl
    		<< "c = " << c << std::endl;
    
    	return 0;
    }
    

      

  • 相关阅读:
    python 数据分析3
    python 数据分析2
    Python 数据分析1
    Python18 Django 基础
    Python 17 web框架&Django
    一只救助犬的最后遗言
    With As 获取 id parentId 递归获取所有
    分布式事物
    div 浮动框
    sql时间比较
  • 原文地址:https://www.cnblogs.com/alexYuin/p/11965232.html
Copyright © 2011-2022 走看看