oc结构_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > oc结构

oc结构

 2013/7/19 10:58:47  Flying-deam-ios  博客园  我要评论(0)
  • 摘要:结构在oc中只能声明变量不能声明函数和类结构声明structDateT{intmonth;intday;intyear;};结构可以在起最后的分号之后定义结构变量,并且可以格式化structDateT{intmonth;intday;intyear;}today{1,2,3};结构可以不定义名字,但是要先声明变量struct{intmonth;intday;intyear;}today{1,2,3};结构可以嵌套structDateT{intmonth;intday;intyear;}
  • 标签:

 

结构 在oc中只能声明变量 不能声明函数和类

结构声明

struct DateT {

int month;

int day;

int year;

};

结构可以在起最后的分号之后定义结构变量,并且可以格式化  

struct DateT {

int month;

int day;

int year;

}today{1,2,3};

结构可以不定义名字 ,但是要先声明变量

struct {

int month;

int day;

int year;

}today{1,2,3};

结构可以嵌套  

struct DateT {

int month;

int day;

int year;

};

struct Time {

int hours

int seconds;

int min;

};

struct DateTime {

struct DateT date;

struct Time time;

}today{1,2,3};

 调用和平常调用一样  就是多了一个嵌套          

 

 

 
上一篇: C#获取网上图片的宽高代码 下一篇: 没有下一篇了!
  • 相关文章
发表评论
用户名: 匿名