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
859 views
in Technique[技术] by (71.8m points)

c++ - can we make global variables by defining a class variable outside of the class with "dot" operator?

class abc
{
    public:
    int x;
};

abc b1;

b1.x=10;

int main()
{

}

why can't we write this b1.x=10; outside of the main function? it shows error if we write b1.x=10; outside of the main function, why?

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

Because, b1.x=10; is an assignment statement which cannot be present at file scope.

You can, however, use initialzation to provide the initial values. Something like

abc b1 = {10};

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

...