有没有办法在另一个类中使用非静态公共整数?
我想要一些类,其中我有有用的函数和静态信息,我在不同包的许多其他类中使用这些信息。
info.longrandom
不起作用,因为它是非静态的。
package common.info
public class info {
public int veryshortrandom = (int)(Math.random() * 500 + 1001);
public int shortrandom = (int)(Math.random() * 1000 + 2001);
public int mediumrandom = (int)(Math.random() * 1500 + 3001);
public int longrandom = (int)(Math.random() * 3000 + 6001);
public int verylongrandom = (int)(Math.random() * 6000 + 1201);
}
我希望得到类似于以下内容的东西:
return info.longrandom
慕码人8056858
ibeautiful
慕盖茨4494581
MM们
相关分类