當前位置:
首頁 >
A problem while linking c++ to python
發布時間:2023/12/15
30
豆豆
生活随笔
收集整理的這篇文章主要介紹了
A problem while linking c++ to python
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Compare the following two extern functions in c++:
(1)
1 extern "C" 2 { 3 void test() 4 { 5 vector<int> a(10); 6 for (auto i = 0; i < 10; ++i) 7 { 8 a[i] = i * i; 9 cout << a[i] << endl; 10 } 11 } 12 }(2)
1 extern "C" 2 { 3 void test() 4 { 5 ofstream otf; 6 otf.open("output"); 7 vector<int> a(10); 8 for (auto i = 0; i < 10; ++i) 9 { 10 a[i] = i * i; 11 otf << a[i] << " "; 12 } 13 otf.close() 14 } 15 }The first one can be called by python but the second can not. Why?
轉載于:https://www.cnblogs.com/luglio/p/5034802.html
總結
以上是生活随笔為你收集整理的A problem while linking c++ to python的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: “AI飞行员”成功驾驶战斗机 美国顶尖飞
- 下一篇: 几大基础算法