码迷,mamicode.com
首页 > 其他好文 > 详细

结构体的声明

时间:2015-06-08 23:07:45      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

//定义结构体 Point
struct Point 
{
    int x;
    int y;
};

void main()
{
    Point pt;
    pt.x=5;
    pt.y=7;
    cout<<pt.x<<endl<<pt.y<<endl;
}


//--------------------------------------------------------------------


//定义结构体 Point
struct Point 
{
    int x;
    int y;
    void output()
    {
    cout<<x<<endl<<y<<endl;
    }
};

void main()
{
    Point pt;
    pt.output(); //C++中允许结构体中包含函数,C语言中不可以
}

 

结构体的声明

标签:

原文地址:http://www.cnblogs.com/ROHALLOWAY/p/4562114.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!