不要使用 system() 打开控制台输出
大家好,我有一个小问题,我需要 ping 很多 PC,所以在我的程序中我用“ping -n 1 > tmp.txt”调用函数 system(),但我不希望显示控制台窗口。
我该怎么做呢?
PS:我使用 dev c++ :D
thx
Possible Duplicate:
Hide console in C system() function, Win.
Hi guys I have a little problem, I need to ping a lot of PC, so in my program i call the function system() with "ping -n 1 > tmp.txt", but I don't want that the console window is shown.
How can I do it?
P.S.: I use dev c++ :D
thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
干净地做到这一点相当困难。
更好的方法可能是用 google 搜索“ping.c”并选择众多实现之一,然后将其中的内容剥离出来并制作您自己的 ping 函数。这会更快并且给你更多的控制权。
It is fairly hard to do this cleanly.
A better approach might be to google "ping.c" and choose one of the many implementations, then rip the guts out of it and make your own ping function. This will be faster and give you more control.
我在这里找到了您可能正在寻找的内容 在 C++ 中隐藏窗口< /a>
还有这里 我猜是免费控制台( )方法是你所需要的?
I found what you might be looking for here Hide a window in C++
And also here I guess the freeconsole() method is what you are needing?
看到这个问题:
Hide console in C system() function, Win
See this question :
Hide console in C system() function, Win