首页 > 代码库 > NSNumber(封装基本数据类型)

NSNumber(封装基本数据类型)

//
//  main.m
//  OC05-task-04
//
//  Created by Xin the Great on 15-1-26.
//  Copyright (c) 2015年 Xin the Great . All rights reserved.
//

#import <Foundation/Foundation.h>

int main(int argc, const char * argv[]) {
    @autoreleasepool {
        // insert code here...
        
        //////////////////////NSNumber//////////////////////
        //封装基本数据类型
        
        int intValue = http://www.mamicode.com/100;>

NSNumber(封装基本数据类型)