2
class FirstClass{
public static void main(String[] args) {

class XORShift64 {
      long x;
      public XORShift64(long seed) {
        x = seed==0 ? 0xdeadbeef : seed;
      }
      public long randomLong() {
        x ^= (x << 21); 
        x ^= (x >>> 35);
        x ^= (x << 4);
        system.out.print();
        return x;

      }

    }

} }

所以我有这段代码,使用 Xorshift 生成一个随机数,它编译得很好,但是当我添加行“system.out.print();”时 它立即显示错误,但我无法读取错误是什么。

感谢您的帮助,我刚刚开始进行 Java 编程。

4

2 回答 2

0

这是您的程序的修复程序。尝试运行它,让我们知道您到底想要什么。

import java.util.Random;

class FirstClass {
    static long x;
    static Random randomGenerator = new Random();

    public static void main(String[] args) {

        for (int i = 0; i <= 100; i++) {
            long randomInt = randomGenerator.nextLong();
            System.out.println("returned value :" + randomLong(randomInt));
        }
    }

    public static long randomLong(long xx) {
        xx ^= (xx << 21);
        xx ^= (xx >>> 35);
        xx ^= (xx << 4);
        System.out.println("Inside Method: " + xx);
        return xx;
    }
}
于 2012-12-05T21:05:37.807 回答
0

您需要将类名大写System,使用方法println(),然后将要打印的参数传递给方法。

    System.out.println("something to print");
于 2012-12-05T20:51:18.613 回答