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

结构struct

时间:2014-08-19 12:25:14      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   数据   ar   div   log   

【意义】

结构struct是一种粗糙的数据类型,严格意义下的数据类型,不但有数据的内部表示以及表示范围,还要有数据的操作;显然,struct不具备以上要求

 

【定义结构】

(1)

struct pointe{
    doubel x;
    double y
}; //分号不能忘

 

(2)struct可以嵌套定义

struct Circle{
    Point centre;//point是struct型的
    double radius;
};

 

【操作struct型的数据】

-先定义结构型变量,再对该变量进行分量访问

//定义struct结构
struct Date{
    int year;
    int month;
    int day;
};

//使用结构体的数据
Date d;
d.year=2000;
d.month=12;
d.day=6;

 

结构struct,布布扣,bubuko.com

结构struct

标签:style   blog   color   使用   数据   ar   div   log   

原文地址:http://www.cnblogs.com/jixiaowu/p/3921528.html

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