博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
7--OC中NSLog函数输出格式详解
阅读量:5054 次
发布时间:2019-06-12

本文共 778 字,大约阅读时间需要 2 分钟。

OC中NSLog函数输出格式详解

• %@ 对象

• %d, %i 整数

• %u 无符整形

• %f 浮点/双字

• %x, %X 二进制整数

• %o 八进制整数

• %zu size_t

• %p 指针

• %e 浮点/双字 (科学计算)

• %g 浮点/双字

• %s C 字符串

• %.*s Pascal字符串

• %c 字符

• %C unichar

• %lld 64位长整数(long long)

• %llu 无符64位长整数

• %Lf 64位双字

2.NSString 类的基本使用

int main() {  // 最简单的创建字符串的方式    NSString *str = @"itcast";    char *name = "itcast";    NSLog(@"我在%@上课",str);  //NSLog(@"%s",name);    int age = 5;  int no = 5;  NSString *name = stephen;    //创建字符串的另外一个方法通过系统中自带的NSString类进行创建 优先使用这种方法创建字符串  //将@"MY age is %d and no is %d" 和age no 合成一个新的字符串 NSString *newStr = [NSString stringWithFormat:@"MY age is %d and no is %d and name is %@",age,no,name]; //stringWithFormat: 系统自带的方法     NSLog(@"----%@",newStr);    return 0;    }

 

 

 

 

转载于:https://www.cnblogs.com/stephenmc/p/5284185.html

你可能感兴趣的文章
Orleans 序列化遇到的坑
查看>>
软件介绍(apache lighttpd nginx)
查看>>
Storm学习笔记1:Storm基本组件
查看>>
markdown语法实例
查看>>
IndexedDB 增删改查 简单的库
查看>>
git使用流程
查看>>
Java的序列化和反序列化
查看>>
selenium IDE常用命令
查看>>
开始写博客了
查看>>
Python selenium之css定位
查看>>
UVA 1525 Falling Leaves
查看>>
03-数据基础
查看>>
CentOS上yum方式安装配置LNMP
查看>>
Spring SpringMvc Hibernate整合
查看>>
Gradle 使用Maven本地缓存
查看>>
程序猿编程十大原则
查看>>
hdu1044
查看>>
MVC+EF之Attribute
查看>>
print_r 打印对象
查看>>
zTree——学习记录之一
查看>>