有没有办法让文件像DLL一样与平台无关?
我正在寻找一些可以在 Windows 和 Mac OS 上使用的文件,例如 DLL,有没有办法做到这一点,C++ 或任何其他必须比 C++ 级别更高的语言
需要帮助。
i am looking for some files like DLLs that can be used on windows as well as Mac OS is there any way of doing this will c++ or any other language that must be higher level than c++
need help regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Java 似乎是一个显而易见的选择。 Java 的 DLL 文件的变体是 JAR 文件,它可以在任何具有 Java 运行时环境的系统上使用。这包括 Windows、Mac OS、Linux 和各种其他操作系统。
而且,Java 被认为比 C++“更高水平”,尽管关于此类主题的语言战争可能偶尔会发生。
Java seems like an obvious choice. Java's variant of DLL files are JAR files, which can be used on any system that has a Java Runtime Environment. This includes Windows, Mac OS, Linux and various other operating systems.
And, Java is percieved as being "higher level" than C++, although language wars might arise once in a while about topics such as this one.