直接上代码:

1:c++代码

    • #include <lua.hpp>
      #include <LuaBridge/LuaBridge.h> #include <iostream>
      #include <string> class A
      {
      public:
      void action()
      {
      std::cout<<"Hello I am A\n";
      } virtual void doPrint(int a,int b)
      {
      std::cout<<"in A a:"<<a<<"b:"<<b<<std::endl;
      } std::string goodMan() const
      {
      return "goodman";
      }
      }; class B : public A
      {
      public:
      void hello(const std::string& info) const
      {
      std::cout<<"hello:"<<info<<std::endl;
      } virtual void doPrint(int a, int b) override
      {
      std::cout<<"in B just"<<(a + b) <<std::endl;
      }
      }; void globalFunction()
      {
      std::cout<<"hello this is a global func\n";
      } bool reloadLuaScript(lua_State* L, const std::string& luafile)
      {
      int state = luaL_dofile(L, luafile.c_str());
      if(state != LUA_OK)
      {
      return false;
      }
      return true;
      } void registerClassAndFunctions(lua_State* L)
      {
      using namespace luabridge;
      //注册全局函数和类函数
      getGlobalNamespace(L).addFunction("gloabalFunction",globalFunction);
      getGlobalNamespace(L)
      .beginClass<A>("A")
      .addFunction("action",&A::action)
      .addFunction("doPrint", &A::doPrint)
      .addFunction("goodMan", &A::goodMan)
      .endClass()
      .deriveClass<B,A>("B")
      .addFunction("hello", &B::hello)
      .endClass();
      } void testCallLua(lua_State* L)
      {
      A a;
      lua_getglobal(L,"testA");
      luabridge::push(L, &a);
      lua_pcall(L,1,0,0);
      } int main(int argc, char** argv)
      {
      lua_State* L = luaL_newstate(); luaL_openlibs(L);
      std::cout<<"try load file "<<argv[1]<<std::endl; auto ok = reloadLuaScript(L, argv[1]);
      if(!ok)
      {
      std::cout<<"load lua file failed\n";
      }
      else
      {
      registerClassAndFunctions(L);
      testCallLua(L);
      }
      lua_close(L);
      L = nullptr;
      }

2:Lua代码

    • --print("hello");
      --[[
      this is note
      这个是多行注释
      --]]
      print("This is myWorld!\n");
      function testA(a)
      a:action();
      a:doPrint(1,2);
      end
      ~
      ~

3:编译运行

    • [root@10-120-10-106 NewChart]# g++ -std=c++11 -o testlua testLua.cpp -llua -ldl
      [root@10-120-10-106 NewChart]# ./testlua abc.lua
      try load file abc.lua
      This is myWorld! Hello I am A
      in A a:1b:2

        

C++ 调用 Lua的更多相关文章

  1. c++调用lua

    我们主要解决如下几个问题: 转:http://www.cnblogs.com/zisou/p/cocos2dx-lua2.html http://www.cnblogs.com/sevenyuan/p ...

  2. vs如何在C++中调用Lua

    最近Cocos2dx的学习卡壳了,一般的照抄代码我不想写上来,但想示例也想得我头晕...为了放松大脑调整状态于是开始学习Lua.Lua的语法学习还是比较简单的,学过javascript或者vbscri ...

  3. vs2013如何在C++中调用Lua(二)

    Lua学习笔记 vs2013如何在C++中调用Lua (此为转载教程) 本人试过完全可行 一.准备工作 1.下载Lua源码,地址:http://www.lua.org/download.html(我用 ...

  4. C中调用Lua函数

    我们先来看一个简单的例子: lua_State* L = NULL; // 内部调用lua函数 double f(double x, double y) { double z; lua_getglob ...

  5. cocos2dx之C++调用Lua

    原文地址:http://blog.csdn.net/dingkun520wy/article/details/49839701 1.引入头文件 #include "cocos2d.h&quo ...

  6. C语言中调用Lua

    C语言和Lua天生有两大隔阂: 一.C语言是静态数据类型,Lua是动态数据类型 二.C语言需要程序员管理内存,Lua自动管理内存 为了跨越世俗走到一起,肯定需要解决方案. 解决第一点看上去比较容易,C ...

  7. VC和VS调用Lua设置以及Lua C API使用。

    通过c++调用lua 脚本,    环境VC++6.0    lua  sdk 5.1.4 在调用前先认识几个函数.1.调用lua_open()将创建一个指向Lua解释器的指针.2. luaL_ope ...

  8. Java调用Lua脚本(LuaJava使用、安装及Linux安装编译)

    依赖包(附件有下载): 包名 类型 操作系统 luajava-1.1.jar jar ALL libluajava-1.1.so .so linux luajava-1.1.dll .dll wind ...

  9. Java调用Lua(转)

    Java 调用 Lua app发版成本高,覆盖速度慢,覆盖率页低.一些策略上的东西如果能够从服务端控制会方便一些.所以考虑使用Lua这种嵌入式语言作为策略实现,Java则是宿主语言. 总体上看是一个模 ...

  10. 简述C/C++调用lua中实现的自定义函数

    1.首先说下目的,为什么要这么做 ? 正式项目中,希望主程序尽量不做修改,于是使用C/C++完成功能的主干(即不需要经常变动的部分)用lua这类轻量级的解释性语言实现一些存在不确定性的功能逻辑:所以, ...

随机推荐

  1. (转)mysql创建表时反引号的作用

    试用navicat工具查看现网mysql建表语句时,发现表名和字段名都是反引号引起来的 CREATE TABLE `tab_notice_title_tv` ( `i_id` int(11) NOT ...

  2. celery + redis quick start

    软件: redis server redis-server.exe 安装redis for python using pip 安装celery (redis)  pip install -U &quo ...

  3. 编译opencv python

    1, 下载并且安装python2.7 + numpy 2,运行cmakegui打开opencv.应该要显示如下信息: Python 2: Interpreter: C:/Python27/python ...

  4. 在free bsd上跑JMeter 的 plugin "PerfMon Server Agent"

    在free bsd上跑JMeter 的 plugin "PerfMon Server Agent" 目的: 在free bsd上跑JMeter 的 plugin "Per ...

  5. 配置中心Client端

    配置中心Client端 1.在Order工程中的Order-Server模块的pom.xml中增加 <dependency> <groupId>org.springframew ...

  6. Spring 中PageHelper分页插件使用

    1.增加pagehelper <!-- mybatis pager --> <dependency> <groupId>com.github.pagehelper& ...

  7. ionic 监听路由事件变化

    (function(){ angular.module("cakeStore", ["ngRoute", "ionic","coo ...

  8. Centos 使用find查找

    CentOS查找目录或文件 find / -name svn 查找目录:find /(查找范围) -name '查找关键字' -type d查找文件:find /(查找范围) -name 查找关键字 ...

  9. gcc与g++的一些关系

    Gcc 简介Linux系统下的gcc(GNU C Compiler)是GNU推出的功能强大.性能优越的多平台编译器,是GNU的代表作品之一.Gcc是可以在多种硬体平台上编译出可执行程序的超级编译器,其 ...

  10. java中关于File类的细说

    File类是我们接触的比较多的类,当初学习是真是傻傻分不清啊.今天就总结一下file的一些比较不好区分的地方. 首先:当然就是构造方法 File f = new File("文件路径&quo ...