object-c 学习 object-c枚举和结构体
struct结构体中的数据不能赋初值,所以赋值只能通过声明加入的方式。
#import <Foundation/Foundation.h>
enum sex{
male=0,
female=1
};
typedef enum{
c=3,
d=4
}test2;
struct student {
char* name;
enum sex sex;
int age;
};
typedef struct student stu;
int main(int argc, const char * argv[])
{
stu su;
su.name="wen";
su.sex=male;
NSLog(@"name=%s,sex=%d",su.name,su.sex);
@autoreleasepool {
// insert code here...
NSLog(@"Hello, World!");
}
return 0;
}
参考:http://blog.csdn.net/wenwei19861106/article/details/8958800
版权声明
由 davidzhang创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/226
版权声明
由 davidzhang创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 Gowhich博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/226