结构

作者:追风剑情 发布于:2019-2-26 18:45 分类:Objective-C

示例

  1. #import <Foundation/Foundation.h>
  2.  
  3. int main(int argc, const char * argv[]) {
  4. @autoreleasepool {
  5. struct date
  6. {
  7. int month;
  8. int day;
  9. int year;
  10. };
  11. struct date1
  12. {
  13. int month;
  14. int day;
  15. int year;
  16. } todaysDate, purchaseDate; //定义结构的同时声明两个变量
  17. struct
  18. {
  19. int month;
  20. int day;
  21. int year;
  22. } todaysDate1 = { 9, 25, 2014 }; //定义结构的同时声明变量并赋初值
  23. struct
  24. {
  25. int month;
  26. int day;
  27. int year;
  28. } dates[100]; //定义结构的同时声明数组
  29. struct date today;
  30. today.month = 9;
  31. today.day = 25;
  32. today.year = 2004;
  33. // %.2i 强制显示两位数,例如 05
  34. NSLog(@"Today's date is %i/%i/%.2i.", today.month,
  35. today.day, today.year % 100);
  36. // 初始化结构
  37. struct date tomorrow = { 9, 26, 2004 };
  38. struct date tomorrow1 = { 9 };
  39. struct date tomorrow2 = { .month = 9, .day = 26, .year = 2004};
  40. struct date tomorrow3 = { .year = 2004 };
  41. /* 点 */
  42. struct CGPoint {
  43. CGFloat x;
  44. CGFloat y;
  45. };
  46. typedef struct CGPoint CGPoint;
  47. /* 宽和高的尺寸 */
  48. struct CGSize {
  49. CGFloat width;
  50. CGFloat height;
  51. };
  52. typedef struct CGSize CGSize;
  53. /* 矩形 */
  54. struct CGRect {
  55. CGPoint origin;
  56. CGSize size;
  57. };
  58. typedef struct CGRect CGRect;
  59. CGPoint startPt;
  60. startPt.x = 100;
  61. startPt.y = 200;
  62. CGSize rectSize;
  63. rectSize.width = 200;
  64. rectSize.height = 100;
  65. CGRect theFrame;
  66. theFrame.origin = startPt;
  67. theFrame.size = rectSize;
  68. theFrame.size.width = 175;
  69. theFrame.origin.x = 0.0;
  70. theFrame.origin.y = 0.0;
  71. }
  72. return 0;
  73. }

运行测试
111.png

标签: Objective-C

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号