Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
475 views
in Technique[技术] by (71.8m points)

c# - Why can't I initialize my fields in my structs?

I am surprised that I can't initialize my fields in structs, why is it like that? Like:

struct MyStruct
{
    private int a = 90;
}

but it's a complie time error. I don't know why it's a problem? Please explain this to me.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

In C#, a struct cannot declare a default constructor.

The compiler moves the initialization statements to the constructor, which can't happen with a struct in C#.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...