C++输出hello world 详细注释

/* #include
	#:预处理标志,后面跟预处理指令,include:预处理指令,包含 :c++头文件,输入输出流
		这行的作用就是在预编译之前先执行这行代码。系统提供的头文件用<>括起来
   #include
		这个头文件是c标准的头文件,c++中叫非标准库文件。
   using namespace std;使用标准命名空间。也就是说C++当中的标准库文件,函数,对象啊等都存放在std空间中,
		作用:作用是在编写大程序的时候能够定义重复的变量,(标识符)
		当需要调用标准空间中的对象,函数的时候调用方法:std::cout std::cin std::endl;需要加双冒号
	#include #include的区别:
		使用#include的时候,需要使用using namespace std;而#include不需要
*/
#include 
//using std::cout;	//使用std空间中cout对象。::调用的意思
//using std::endl;
int main(void)
{
	//cout<<"hello world"<
using namespace std;
int main(void)
{
	cout<<"hello world"<
  int main(void)
  {
	cout<<"hello world"<
//重命名问题
#include
namespace a
{
    int b=5;
}
namespace c
{
    int b=99;
}
int main(void)
{
    int b=-77;
    std::cout<std::endl;
    std::cout<std::endl;
    std::cout<std::endl;
    return 0;
}

 

  

转载于:https://www.cnblogs.com/fengkui/p/6117914.html

你可能感兴趣的:(C++输出hello world 详细注释)