Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Eclipse 中有一个特定的运行配置,用于模拟我想运行 100 次左右。有没有一种方法可以做到这一点,而无需亲自坐在我的电脑前并一遍又一遍地奔跑?
您可以创建一个运行该类 100 次的 bash 脚本。
for i in {1..100} do java "class path" done
假设操作系统是linux