• 一元运算符重载


    一元运算符常用的有:  前置++、后置++、前置--、后置--;

    为将前置与后置的函数区分开,C++规定:

    前置: operator++(temp& t1);

    后置:operator++(temp& t1,int i);//int i是编译器为了与前置++函数区分开,添加的一个无用的形参

    同理:前置--,后置--

    class  temp

    {

        public:

               temp(int a, int b)

            {       

                   this->m_a=a;

                   this->m_b=b;

            }

    //用全局函数实现后置--

          friend temp& operator--(temp& t,int i);

    //用内部函数实现后置++

     temp& operator++(int i)

    {

             temp t3=*this;

            this->a++;

            this->b++;

           return t3;

    }

    //用内部函数实现前置++

          temp& operator++()

         {

                this->a++;

               this->b++;

               return *this;

         }

    private:

             int m_a;

             int m_b;

    }

      

    //定义重载函数--

    temp&  operator--(temp& t1,int i)

       {

            temp t=t1;  //初始化一个对象后啊,在对t1执行--

            t.m_a--;

           t.m_b--;

           return  t;

        }

    int main()

    {      temp t1(0,0);

            ++t1;

            t1--;

            t1++;

    }

  • 相关阅读:
    AOP面向方面编程
    Struts2基于注解的Action配置
    地图api汇总
    Visual C++ 嵌入汇编代码
    C# ASP.net中用到的JWT身份验证
    Asp.Net Forms 身份验证
    .Net 面试常见问题
    Web Api 自动生成帮助文档
    .Net常见的一些区别
    创建Silverlight 5浏览器内受信应用
  • 原文地址:https://www.cnblogs.com/lyjbk/p/12820058.html
Copyright © 2020-2023  润新知