Why statements cannot appear at namespace scope?

2019-01-15 21:16发布

Any idea on which rule in standard states the statements like this:

p++; //where 'p' is pointer to array

cannot appear in global scope?

I'm looking for a reference not just an explanation if possible.

3条回答
男人必须洒脱
2楼-- · 2019-01-15 21:24

CHeck out "The C++ programming Language" by of course Stroustrup.

Section r.6.1 talks about statements - which can be labels, expressions, compound statements, selection statements, iteration statements, jump statements or declaration statements.

Then jump back to section 3.3.1 Which shows the statement syntax and references: Note that.....there is no assignment statement or procedure call statement. Assignment and function call are handled as expressions.

Section r.3.1 then talks about four types of scope - local, function, file and class. Since global is essentially "file" scope. Names are allowed in global scope as are classes first declared in a return or argument type.

Really could find no concrete definitive that flat out states you can't have an expression statement in global scope, but by omission the references show what you CAN have.

查看更多
何必那么认真
3楼-- · 2019-01-15 21:26

The expression p++ which you've written is at namespace scope. It is forbidden by the grammer of namespace-body which is defined in §7.3.1/1 as:

namespace-body:
     declaration-seqopt

which says the namespace-body can optionally contain only declaration. And p++ is surely not a declaration, it is an expression, therefore the Standard implicitly forbids it. The Standard might have explicit statement forbidding this, but I think the above should be enough.

In the same way, you cannot do this:

namespace sample
{
  f(10,10); //error
  std::cout << "hello world" << std::endl;//error
}

But if you somewhow convert expressions into declarations (or rather use expressions in declarations), then you could evaluate the so-called expressions. Here is one trick:

#include<iostream>

namespace sample
{
  struct any { template<typename T> any(const T&){} };

  void f(int a,int b) { std::cout << a * b <<  std::endl; }

  any a1= (f(10,10), 0); //ok
  any a2 = std::cout << "hello world" << std::endl;//ok
}

int main() {}

Output (if you're lucky):

100
hello world

Online demo : http://ideone.com/icbhh

Notice that the return type of f() is void, which means I cannot write the following (see error):

any a1 = f(10,10); //error

That is why I used comma operator so that the expression could have some value, which evaluates to the last operand in the comma expression. In case of std:cout, since it returns std::ostream&, I don't need to use comma operator; it is fine without it.

One more interesting thing in the above code: why I defined any and a templated constructor in it? The answer is, I wrote this so that I could assign value of any type (no pun intended), be it int, std::ostream& or whatever. The templated constructor can take argument of any type.

But don't write such code. They're not guaranteed to work the way you expect.

Read the answers in this topic where you would see why such coding could be dangerous:

查看更多
该账号已被封号
4楼-- · 2019-01-15 21:36

By saying "statements like this" I guess you know that/why statements in general cannot be in global scope.

p++;

Is a statement because it basically is translated into:

p = p + 1;

Which is a normal statement.

查看更多
登录 后发表回答