欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Object C output

程序员文章站 2022-03-29 23:25:00
...
学习Object C编程 首先学习下Object C的output语句的实现
1. NSLog()方法
   NSLog(@"Hello, World.");

2.定义一个String类型的并且赋值
   NSString *helloWorld = @"Hello World";
   NSLog(helloWorld);

3.%a的用法
   NSString *helloWorld = @"Hello World";
   NSLog("Welcome %a",helloWorld);

输出:Welcome Hello world。
4.NSNumber()
  NSString *firstName = @"David";
  NSNumber  *age = @27;
  NSLog("%a is %a years old.",firstName, age);

输出:David is 27 years old.
5.NSArray()
    NSArray *app =@[@"A",@"B",@"C"];
   NSLog(app[1]);
    app = @[@"A',@"B",@"C",@"D"];

输出: B
6. NSDictionary() key -value 操作
     NSDictionary *rates =@{@"A":@3, @"B":@7};
     NSLog(rates[@"B"]);

输出: 7

以上是Object c学习的第一课程。