我需要一个什么都不做的可执行文件

时间:2013-11-14 09:06:01

标签: exe

如何创建一个可以继续运行并在任务管理器中显示的可执行文件,但什么都不做?我需要一个程序,我可以使用每种语言,或者如果它已经存在,那就更好了。

感谢。

3 个答案:

答案 0 :(得分:2)

这是C#

中的一个很好的例子
using System;
using System.Threading;

class Program {
    static void Main() {
        while(true) {
            Thread.Sleep(100); // So we don't spam the CPU too much
        }
    }
}

你实际上可以在没有太多麻烦的情况下退出的程序的另一个例子。 它等着你按Enter键。 :)

using System;

class Program {
    static void Main() {
        Console.ReadLine();
    }
}

答案 1 :(得分:2)

创建扩展名为.cmd的文件并将其写入该文件:

:BEGIN
GOTO BEGIN

您可以双击它,然后使用此类代码从任何编程语言中调用它:

system("/path_to_your_code/your_file.cmd");

答案 2 :(得分:2)

这是一个C代码来完成这项工作,你可以使用线程睡眠方法来减少CPU负载

 #include<stdio.h>

 int main()
 {
  char a;

  while((a=getchar())!='z')// to quit the program when z is pressed
  { 
  }
  return 0;
}