博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一个简单的函数声明和调用
阅读量:5310 次
发布时间:2019-06-14

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

//
//
  main.m
//
  HeloObjectiveC
//
//
  Created by wb on 14-9-13.
//
  Copyright (c) 2014年 wb. All rights reserved.
//
#import <Foundation/Foundation.h>
BOOL areIntsDifferent (
int thing1, 
int thing2)  
//
{
    
if (thing1==thing2)
    {
        
return  (NO);
    }
    
else
        
return (YES);
}
NSString *Boolstring(BOOL yesno)  
//
字符型声明前面有*,表示字符串属于指针类型,char类型相同,赋值时使用@表示地址指针调用
{
    
if (yesno==NO)
    {
        
return  (
@"
NO
");
    }
    
else
    {
        
return (
@"
Yes
");
    }
}
int main(
int argc, 
const 
char * argv[])
{
    BOOL areTheDifferent;                                                    
//BOOL类型,值为YES和NO,不能用数值来表示
    areTheDifferent=areIntsDifferent (
5,
5);
    
    NSLog(
@"
are 
%d and %d different? %@
" ,
5,
5,Boolstring(areTheDifferent));   
//格式化数字%d ,格式化文本%@ 
   
    areTheDifferent=areIntsDifferent (
23,
42);
    
    NSLog (
@"
are %d and %d different?  %@ 
" ,
23,
42,Boolstring(areTheDifferent));
    
return 
0;
}

转载于:https://www.cnblogs.com/wangvb2003/p/3969765.html

你可能感兴趣的文章
c++回调函数
查看>>
linux下Rtree的安装
查看>>
【Java】 剑指offer(53-2) 0到n-1中缺失的数字
查看>>
Delphi中ListView类的用法
查看>>
多米诺骨牌
查看>>
Linq 学习(1) Group & Join--网摘
查看>>
asp.net 调用前台JS调用后台,后台掉前台JS
查看>>
Attribute(特性)与AOP
查看>>
苹果手表:大方向和谷歌一样,硬件分道扬镳
查看>>
Competing Consumers Pattern (竞争消费者模式)
查看>>
Android面试收集录15 Android Bitmap压缩策略
查看>>
PHP魔术方法之__call与__callStatic方法
查看>>
ubuntu 安装后的配置
查看>>
【模板】对拍程序
查看>>
【转】redo与undo
查看>>
解决升级系统导致的 curl: (48) An unknown option was passed in to libcurl
查看>>
Java Session 介绍;
查看>>
spoj TBATTLE 质因数分解+二分
查看>>
Django 模型层
查看>>
dedecms讲解-arc.listview.class.php分析,列表页展示
查看>>