C 语言

关注公众号 jb51net

关闭
首页 > 软件编程 > C 语言 > c++中struct使用注意事项

c++中struct使用注意事项

投稿:hebedich

本文通过2个小示例给大家展示了一下c++中struct使用的注意事项,希望对大家学习C++能够有所帮助。

1.C++的结构体变量在声明的时候可以省略struct,在c中这样是不可以的,例子如下

#include<iostream>
#include<string>
using namespace std;

struct test{
  int num;
  string name;
};

int main(void)
{
  test t;
  t.num=1;
  t.name="jack";
  cout<<t.num<<" "<<t.name<<endl;    
}

2.c++的结构体声明可以声明在main()函数中,也可以在main()函数之前,在之前的话,整个程序都可以调用,这也是最常用的方式;而在内部的话,只能在函数内使用,也就是说在声明的函数内可以使用,类似于局部变量的概念。如下

int main(void)
{
  struct test{
    int num;
  };
  
  test hello;//right
  
}

void t()
{
  test t; //wrong
}

您可能感兴趣的文章:
阅读全文