我可以在dll中编写IO语句吗?

发布于 2024-10-11 08:37:42 字数 63 浏览 3 评论 0原文

这是一个新手问题。我可以编写诸如 printf 之类的语句或打开 dll 内的文件吗?

This is a newbie question. Can I write statements like printf or open a file inside a dll?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你是暖光i 2024-10-18 08:37:42

在所有情况下打开文件当然都是可能的。

但是,使用 printf() 取决于调用 DLL 的可执行文件是否是控制台程序。如果它是一个 GUI 程序,那么 printf() 输出就无处可去,因此它不会出现。如果它是控制台程序,您将在控制台上看到输出。

Opening a file is certainly possible in all cases.

However, using printf() depends on whether the executable calling your DLL is a console program or not. If it's a GUI program, then there is nowhere for the printf() output to go, so it will not appear. If it's a console program, you'll see the output on the console.

鱼窥荷 2024-10-18 08:37:42

您的问题和标题提出了两个不同的问题。但问题body的答案是肯定的——库当然可以使用这些函数。

不过,printf 可能不会执行任何操作,具体取决于使用该库的程序是否已关闭标准输出。

Your question and its title are asking two different questions. But the answer to the question body is yes -- libraries can certainly use those functions.

printf might not do anything though, depending on whether standard output has been closed by the program using the library.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文