JAN之c++動態庫的編譯(linux)

c++動態庫的編譯 創建一個文件hello.cpp vim hello.cpp #include <iostream> using namespace std; /** *這裏使用extern "C" 是因爲 C++在編譯時會將函數名改掉,導致最後的JNA調用不成功。 **/ extern "C"{ void hello(); } void hello(){ cout << "th
相關文章
相關標籤/搜索