有关结构体和类的说法不正确的是( )?
interface IStructInterface1 { int Sum(); } public struct Struct1: IStructInterface1 { int _x; int _y; // error CS0568: 结构不能包含显式的无参数构造函数 //public Struct1(); public Struct1(int x, int y) { _x = x; _y = y; } public int Sum() { return _x + _y; } } public class StructTest1 { public static void Run() { var st1 = new Struct1(1, 2); System.Console.WriteLine(st1.Sum()); } }