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

c++ - May I initialize a global variable with the result of a function call?

Is the following code legal?

int add(int a, int b)
{
    return a + b;
}

int myvar = add(1, 2);

int main() { /* ... */ }

Why, or why not?

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

Yes. Yes, it is.

Static initializers may call functions, as long as they're in scope.

[dcl.decl] (2003 wording, 8/2):

Initial values can also be specified in a declarator; initializers are discussed in 8.5 and 12.6.

[dcl.init] (2003 wording, 8.5/2):

Automatic, register, static, and external variables of namespace scope can be initialized by arbitrary expressions involving literals and previously declared variables and functions.

(Don't be misled by the lack of the static keyword, which has all sorts of meanings. Your variable myvar is declared at namespace scope, and thus has static storage duration.)


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

...