a. 自动变量
b.应该在一个文件中将secret定义为外部变量,并在第二个文件中使用extern来声明它。
c.可以在外部定义前加上关键字static,将topsecret定义为一个有内部链接的静态变量,也可在一个未命名的名称空间中进行定义。
d.应在函数中的声明前加上关键字static,将beencalled定义为一个本地静态变量。
using 声明:using 名称空间名 :: 名称 例如:using Jill:: fetch;//这是一个using 声明。
using 编译指令:using namespace 名称空间名 例如: using namespace Jill;//这是一个using 编译指令
#include <iostream>
int main()
{
double x;
std::cout << "Eneter value: ";
while(!(std::cin >> x))
{
std::cout << "Bad input. Please enter a number: ";
std::cin.clear();
while(std::cin.get()!='\n')
continue;
}
std::cout << "Value = " << x << std::endl;
return 0;
}
#include <iostream>
int main()
{
using std::cout;
using std::cin;
using std::endl;
double x;
cout << "Eneter value: ";
while(!(cin >> x))
{
cout << "Bad input. Please enter a number: ";
cin.clear();
while(cin.get()!='\n')
continue;
}
cout << "Value = " << x << endl;
return 0;
}
可以在每个文件中包含单独的静态函数定义。或者每个文件都在未命名的名称空间中定义一个合适的average()函数。
10
4
0
Other: 1011296-1
another(): 10, -4
1
4, 1, 2
2
2
4, 1, 2
2