步骤:
1.c++
- // People.h
- #ifndef __MXCPPTest__People__
- #define __MXCPPTest__People__
- #include <iostream>
- class People
- {
- public:
- void say(const char * words);
- };
- #endif
-----------------
- //
- // People.cpp
- // MXCPPTest
- //
- // Created by fengshaobo on 12-11-27.
- // Copyright (c) 2012年 fengshaobo. All rights reserved.
- //
- #include "People.h"
- void People::say(const char *words)
- {
- std::cout << words << std::endl;
- }
2.oc封装
- //
- // Student.h
- // MXCPPTest
- //
- // Created by fengshaobo on 12-11-27.
- // Copyright (c) 2012年 fengshaobo. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "People.h"
- @interface Student : NSObject
- {
- People *p;
- }
- - (void)say:(NSString *)words;
- @end
-----------------
- //
- // Student.mm
- // MXCPPTest
- //
- // Created by fengshaobo on 12-11-27.
- // Copyright (c) 2012年 fengshaobo. All rights reserved.
- //
- #import "Student.h"
- @implementation Student
- - (void)say:(NSString *)words
- {
- p->say([words UTF8String]);
- }
- @end
3.将.m -> .mm
- //
- // ViewController.mm
- // MXCPPTest
- //
- // Created by fengshaobo on 12-11-27.
- // Copyright (c) 2012年 fengshaobo. All rights reserved.
- //
- #import "ViewController.h"
- @interface ViewController ()
- @end
- @implementation ViewController
- - (void)viewDidLoad
- {
- [super viewDidLoad];
- Student *s = [[Student alloc] init];
- [s say:@"hello world!"];
- [s release];
- s = nil;
- }
- - (void)didReceiveMemoryWarning
- {
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
- }
- @end