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

helloword

程序员文章站 2022-03-09 20:08:32
...

#import <Foundation/Foundation.h>
/*
 *NSLog 和@"字符串"
 *NSLog()接受一个字符串作为第一个参数,该字符串可以包含格式说明符(如%d),此函数还可以接受匹配格式说明符的其他参数。
 *双引号中的字符串前有一个@符号,表示引用的字符串应该作为cocoa的NSString元素来处理
 *NSString功能:1:告知其长度,2:将自身与其他字符串比较,3:将自身转换为整形值或浮点值
 *cocoa对其所有的常量,函数和类型名称都添加了NS前缀
 */
int main (int argc, const char * argv[]) {
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
	//NSLog();在控制台打印出字符串
	NSLog(@"hello world !!");
	NSLog(@"-----%d",10);
	NSString *[email protected]"hello world";
	NSLog(@"str's long= %d ",[str length]);
	NSString *s=[[NSString alloc] initWithString:@"sssss"];
	NSLog(s);
	
	NSString *ss=[[NSString alloc] initWithFormat:@"ddddd--%d",100];
	NSLog(@"initwithFormat==%@",ss);
    [pool drain];
	return 0;
}
 
相关标签: Cocoa