VisualStudio SDK,运行时更新错误

时间:2018-06-02 23:37:34

标签: visual-studio sdk

VS2017更新后我遇到了问题。我还安装了最新的SDK和Runtime(64)。我在编译期间收到了这个错误。

class Car
{
private :
    int a;
    int b;
public :
    void set(int x, int y)
    {a = x;
     b = y;
    }

    void output()
    {cout << a << " " << b << endl;
    }

    Car & operator=(const Car & carB)
    {set(int c, int d);
    }
};

using namespace std;
int main()
{
 Car car1(1, 2);
 Car car2;

 car2=car1;
 car2.output();

 return 0;
}

1 个答案:

答案 0 :(得分:0)

重新安装上述数据包有帮助