我已经为一个类准备了以下代码(这是一个片段):

template<typename T>
class Pos2 {
public:
    T x, y;

    Pos2() : x(0), y(0) {};
    Pos2(T xy) : x(xy), y(xy) {};
    Pos2(T x, T y) : x(x), y(y) {};

};

现在,我还有2个typedef:
typedef Pos2<pos_scalar> Pos;
typedef Pos2<size_scalar> Size;

一切都按预期工作,但是当我这样做时:
Pos p(5.5, 6.5);
Size s(3, 8);
p = s;

我收到此错误:
error: conversion from ‘Size {aka Pos2<short int>}’ to non-scalar type ‘Pos’ requested

这很有意义,但我想知道如何解决它= P

最佳答案

添加一个构造函数

template <typename Type2> Pos2(const Pos2<Type2> &other)
{ x = other.x; y = other.y; }

09-12 18:36