我可以在dll中编写IO语句吗?
这是一个新手问题。我可以编写诸如 printf
之类的语句或打开 dll 内的文件吗?
This is a newbie question. Can I write statements like printf
or open a file inside a dll?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在所有情况下打开文件当然都是可能的。
但是,使用
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 theprintf()
output to go, so it will not appear. If it's a console program, you'll see the output on the console.您的问题和标题提出了两个不同的问题。但问题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.