• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

               C++ 技術中心

               :: 首頁 :: 聯系 ::  :: 管理
              160 Posts :: 0 Stories :: 87 Comments :: 0 Trackbacks

            公告

            鄭重聲明:本BLOG所發表的原創文章,作者保留一切權利。必須經過作者本人同意后方可轉載,并注名作者(天空)和出處(CppBlog.com)。作者Email:coder@luckcoder.com

            留言簿(27)

            搜索

            •  

            最新隨筆

            最新評論

            評論排行榜

            1.下載swig,我這里用的是swigwin-2.0.9.zip,官網地址http://www.swig.org/ 載解壓后,目錄下有swig.exe程序
            2. 在VS中新建工程TestLua
            3.添加hello.h代碼如下:
            #ifndef HELLO_H__
            #define HELLO_H__

            int sum( int a, int b );
            class Test
            {
            public:
                int a;
                int b;
                Test();
                void print();
            };

            #endif/*HELLO_H__*/

            4.添加hello.cpp代碼如下:
            #include "stdafx.h"
            #include "hello.h"

            int sum( int a, int b )
            {
                return (a + b);
            }
            Test::Test()
            {
                a = 10;
                b = 20;
            }
            void Test::print()
            {
                printf( "%d %d\n", a, b );
            }

            5.編寫modulehello.i文件,內容如下:
            %module hello
            %{
            #include "hello.h"
            %}
            %include "hello.h"

            6.使用以下命令生成文件
            swig.exe -c++ -lua c:\modulehello.i
            于是生成:modulehello_wrap.cxx文件

            7.在工程包含
            C:\Program Files (x86)\Lua\5.1\include
            符加庫目錄"C:\Program Files (x86)\Lua\5.1\lib"
            并且導入庫
            lua51.lib

            8.在工程文件TestLua.cpp代碼如下:
            #include "stdafx.h"
            extern "C"
            {
            #include <lua.h>
            #include <lualib.h>
            #include <lauxlib.h>
            };
            #include "modulehello_wrap.cxx"
            extern "C"
            {
                extern int luaopen_hello(lua_State* L); // declare the wrapped module
            };
            int _tmain(int argc, _TCHAR* argv[])
            {
                lua_State *L;
                L=lua_open();
                luaopen_base(L);    // load basic libs (eg. print)
                luaopen_hello(L);    // load the wrappered module
                if (luaL_loadfile(L,"./hello.lua")==0) // load and run the file
                    lua_pcall(L,0,0,0);
                else
                    printf("unable to load %s\n","hello.lua");
                lua_close(L);

                return 0;
            }

            9.編寫lua腳本hello.lua如下:
            print( "測試腳本是否被調用" );
            print( "hello" );
            print( "hello, tpf" );
            print( "看到hello的字樣,表示腳本被調用" );

            print( "-----------------------------" );

            print( "下面測試函數" );
            print( hello.sum( 1, 2 ) );
            print( "看到數字表示函數正常被調用" );

            print( "-----------------------------" );

            print( "下面測試類調用" );
            a = hello.Test();

            print( "-----------------------------" );
            print( "成員變量>>>", a.a );
            print( "成員變量>>>", a.b );

            print( "下面測試成員函數" );
            a:print();
            print( "看到數字表示成員函數被正常調用" );

            10.得出結果如下:
            測試腳本是否被調用
            hello
            hello, tpf
            看到hello的字樣,表示腳本被調用
            -----------------------------
            下面測試函數
            3
            看到數字表示函數正常被調用
            -----------------------------
            下面測試類調用
            -----------------------------
            成員變量>>>     10
            成員變量>>>     20
            下面測試成員函數
            10 20
            看到數字表示成員函數被正常調用
            posted on 2014-04-24 16:12 C++技術中心 閱讀(3338) 評論(0)  編輯 收藏 引用 所屬分類: 其他編程
            亚洲国产综合久久天堂| 久久综合久久综合九色| 久久久久久久女国产乱让韩 | 久久久久人妻精品一区二区三区 | 2021国产成人精品久久| 久久精品中文字幕有码| 中文无码久久精品| 久久97久久97精品免视看| 三级三级久久三级久久| 国产Av激情久久无码天堂| 久久青青草原精品国产不卡| 久久婷婷激情综合色综合俺也去| 国产精品99精品久久免费| 亚洲Av无码国产情品久久| 99久久人妻无码精品系列| 日韩久久久久中文字幕人妻| 精品国产一区二区三区久久久狼| 日韩久久久久中文字幕人妻| 97久久国产亚洲精品超碰热 | 成人久久精品一区二区三区| 亚洲欧洲中文日韩久久AV乱码| 狠狠色丁香婷婷综合久久来 | 久久精品无码一区二区三区免费| 欧美日韩久久中文字幕| 久久久久亚洲精品男人的天堂| 无码人妻精品一区二区三区久久| 亚洲国产精品狼友中文久久久| AAA级久久久精品无码区| 久久精品国产只有精品2020| 一本一道久久综合狠狠老| 久久综合久久综合亚洲| 四虎久久影院| 亚洲AV伊人久久青青草原| 久久久久久国产精品美女| 日本久久久久久中文字幕| 国产精品一区二区久久| 国产一久久香蕉国产线看观看| 久久精品国产亚洲77777| 久久国产乱子精品免费女| 久久青青草原国产精品免费| 99久久国产综合精品网成人影院|