码迷,mamicode.com
首页 > 其他好文 > 详细

布尔类型-2.0

时间:2014-09-25 23:50:18      阅读:289      评论:0      收藏:0      [点我收藏+]

标签:des   io   os   ar   sp   div   on   c   log   

//
//  ViewController.m
//  OC-Design
//
//  Created by 葛迅 on 14/9/25.
//
//

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    BOOL areTheyDiff;
    areTheyDiff = areIntsDifferent(5, 5);
    NSLog(@"are %d and %d diff?%@",5,5,boolString(areTheyDiff));
    
    areTheyDiff= areIntsDifferent(25, 35);
    NSLog(@"are %d and %d diff?%@",25,35,boolString(areTheyDiff));
    
}

BOOL areIntsDifferent(int thing1,int thing2)
{
    if (thing1 == thing2) {
        return NO;
    }else{
        return YES;
    }
}

NSString *boolString(BOOL yesNo)
{
    if (yesNo == NO) {
        return @"NO";
    }else{
        return @"YES";
    }
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end

布尔类型-2.0

标签:des   io   os   ar   sp   div   on   c   log   

原文地址:http://my.oschina.net/gexun/blog/318707

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!