码迷,mamicode.com
首页 > 编程语言 > 详细

OC项目调用C++

时间:2019-06-05 20:01:31      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:http   static   void   调用   print   from   end   int   info   

技术图片

 

CPPHello.hpp

#ifndef CPPHello_hpp
#define CPPHello_hpp

#include <stdio.h>

class CPPHello {
    
    
public:
    static void sayHello();
};

#endif /* CPPHello_hpp */

 

CPPHello.cpp

#include "CPPHello.hpp"

void CPPHello::sayHello(){
    printf("hello from OC");
}

 

OC项目调用C++

标签:http   static   void   调用   print   from   end   int   info   

原文地址:https://www.cnblogs.com/liuw-flexi/p/10981387.html

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