Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
哪种语言(C 或 C++)最适合编写一次本机库并在具有语言绑定的不同语言中使用它(例如,使用 JNI 或 Ruby 的 C 扩展),为什么?
C、因为
如果您愿意,您可以用 C++ 编写您的库,只要您为其提供 extern "C" 绑定/导出,以便其他运行时可以使用它。