鱼C论坛

 找回密码
 立即注册
查看: 761|回复: 3

[已解决]模板的前置声明

[复制链接]
发表于 2020-9-19 11:52:29 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 stevenmtroy 于 2020-9-19 13:05 编辑

请问这样写为什么编译器总报错:不可识别的模板定义/声明?
#include <iostream>

template <typename T> Test<T> operator++(Test<T>& t);

template <typename T>
class Test {
    T a;
    T b;
public:
    Test(int a, int b)
    {
        this->a = a;
        this->b = b;
    }
    void Print()const
    {
        std::cout << a << " , " << b;
    }

    template <typename T>
    friend Test<T> operator++(Test<T>& t);
};

int main()
{
    Test<int> test(0, 0);
    (++test).Print();
}

template <typename T> Test<T> operator++(Test<T>& t)
{
    return Test<T>(++t.a, ++t.b);
}
最佳答案
2020-9-20 00:00:35
是要实现++操作符的重载吗?
#include <iostream>

//template <typename T> Test<T> operator++(Test<T>& t);

template <typename T>
class Test {
    T a;
    T b;
public:
    Test(T a, T b)
    {
        this->a = a;
        this->b = b;
    }

        Test<T> & operator ++()
        {
                a++;
                b++;
                return * this; 
        }

    void Print()const
    {
        std::cout << a << " , " << b;
    }
        
//    template <typename T>
//                friend Test<T> operator++(Test<T>& t);
};

int main()
{
    Test<int> test(0, 0);
        (++test).Print();
    return 0;
}

//template <typename T> Test<T> operator++(Test<T>& t)
//{
//   return Test<T>(++t.a, ++t.b);
//}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-9-19 12:07:18 | 显示全部楼层
本帖最后由 昨非 于 2020-9-19 12:11 编辑

抱歉看错了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-9-20 00:00:35 | 显示全部楼层    本楼为最佳答案   
是要实现++操作符的重载吗?
#include <iostream>

//template <typename T> Test<T> operator++(Test<T>& t);

template <typename T>
class Test {
    T a;
    T b;
public:
    Test(T a, T b)
    {
        this->a = a;
        this->b = b;
    }

        Test<T> & operator ++()
        {
                a++;
                b++;
                return * this; 
        }

    void Print()const
    {
        std::cout << a << " , " << b;
    }
        
//    template <typename T>
//                friend Test<T> operator++(Test<T>& t);
};

int main()
{
    Test<int> test(0, 0);
        (++test).Print();
    return 0;
}

//template <typename T> Test<T> operator++(Test<T>& t)
//{
//   return Test<T>(++t.a, ++t.b);
//}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-9-20 16:50:47 | 显示全部楼层
我已经调出来了, 不过还是要感谢。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-13 02:35

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表