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++ 程序(已经编写好的)共享的 perl 脚本。而且我很不擅长编写 C++ 程序。
谁能建议我如何将 C++ 程序合并到 perl 脚本中?并将 perl 脚本的输入提供给 C++ 程序?
您可以使用 perl 执行外部脚本
看看Inline::CPP - 用 C++ 编写 Perl 子例程和类。
有SWIG,您可以使用它从您的 C++ 程序中提供您想与 Perl 共享的类。您可以配置要在某个目标文件中共享的类。