好的,我在代码中实现了这个SO问题:随机返回True或False
但是,我的行为很奇怪:我需要同时运行十个实例,每个实例每次运行仅返回一次true或false。令人惊讶的是,无论我做什么,每次我得到false
有什么方法可以改善这种方法,以便我至少有大约50%的机会得到true
吗?
为了使它更易于理解:我将我的应用程序构建为JAR文件,然后通过批处理命令运行
java -jar my-program.jar
pause
程序的内容-使其尽可能简单:
public class myProgram{
public static boolean getRandomBoolean() {
return Math.random() < 0.5;
// I tried another approaches here, still the same result
}
public static void main(String[] args) {
System.out.println(getRandomBoolean());
}
}
如果我打开10个命令行并运行它,false
每次都会得到结果...