- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在 jMonkey Engine 3 中制作一个游戏,我的世界生成代码有点庞大,所以我计划将其移动到一个名为 Generator
的新类,但当我最终把所有事情都解决了并且运行我的程序,我在尝试使用其他类的方法的地方遇到了 NullPointerException 。过去我在 NullPointerException
方面运气不佳,但这是迄今为止最糟糕的一次。该代码在主类文件中时有效。我将为您提供下面两个类的代码以及错误。
请注意,为了节省空间,我没有包含包声明或导入。
第一类:主要:
public class Main extends SimpleApplication implements ActionListener {
private static final Logger logger = Logger.getLogger(Main.class.getName());
private BulletAppState bulletAppState;
private CharacterControl playerControl;
private Vector3f walkDirection = new Vector3f();
private boolean[] arrowKeys = new boolean[4];
private CubesSettings cubesSettings;
private BlockTerrainControl blockTerrain;
private Node terrainNode = new Node();
private Generator gen;
public static void main(String[] args){
Logger.getLogger("").setLevel(Level.FINE);
AppSettings s = new AppSettings(true);
Main app = new Main();
try {
s.load("com.bminus");
} catch(BackingStoreException e) {
logger.log(Level.SEVERE, "Could not load configuration settings.",e);
}
try {
s.setIcons(new BufferedImage[]{ImageIO.read(new File("assets/Textures/icon.gif"))});
} catch (IOException e) {
Logger.getLogger(Main.class.getName()).log(Level.SEVERE, "Icon file missing",e);
}
s.setRenderer(AppSettings.LWJGL_OPENGL2);
s.setBitsPerPixel(24);
s.setFrameRate(-1);
s.setFullscreen(false);
s.setResolution(640,480);
s.setSamples(0);
s.setVSync(true);
s.setFrequency(60);
s.setTitle("The Third Power Pre-Alpha 1.1.0");
try {
s.save("com.bminus");
} catch(BackingStoreException e) {
logger.log(Level.SEVERE, "Could not save configuration settings.",e);
}
app.setShowSettings(false);
app.setSettings(s);
app.start();
}
public Main(){}
@Override
public void simpleInitApp(){
setDisplayFps(false);
setDisplayStatView(false);
bulletAppState = new BulletAppState();
stateManager.attach(bulletAppState);
initControls();
gen.initBlockTerrain(); //THIS LINE IS THE ONE THAT IS NULL!!!
initGUI();
initPlayer();
cam.lookAtDirection(new Vector3f(1, 0, 1), Vector3f.UNIT_Y);
}
private void initControls(){
inputManager.addMapping("fps_show", new KeyTrigger(KeyInput.KEY_F3));
inputManager.addMapping("fps_hide", new KeyTrigger(KeyInput.KEY_F4));
inputManager.addMapping("left", new KeyTrigger(KeyInput.KEY_A));
inputManager.addMapping("right", new KeyTrigger(KeyInput.KEY_D));
inputManager.addMapping("forward", new KeyTrigger(KeyInput.KEY_W));
inputManager.addMapping("backward", new KeyTrigger(KeyInput.KEY_S));
inputManager.addMapping("jump", new KeyTrigger(KeyInput.KEY_SPACE));
inputManager.addMapping("place", new MouseButtonTrigger(MouseInput.BUTTON_RIGHT));
inputManager.addMapping("break", new MouseButtonTrigger(MouseInput.BUTTON_LEFT));
inputManager.addListener(this, "fps_show");
inputManager.addListener(this, "fps_hide");
inputManager.addListener(this, "left");
inputManager.addListener(this, "right");
inputManager.addListener(this, "forward");
inputManager.addListener(this, "backward");
inputManager.addListener(this, "jump");
inputManager.addListener(this, "place");
inputManager.addListener(this, "break");
}
private void initGUI(){
BitmapText crosshair = new BitmapText(guiFont);
crosshair.setText("+");
crosshair.setSize(guiFont.getCharSet().getRenderedSize() * 2);
crosshair.setLocalTranslation(
(settings.getWidth() / 2) - (guiFont.getCharSet().getRenderedSize() / 3 * 2),
(settings.getHeight() / 2) + (crosshair.getLineHeight() / 2), 0);
guiNode.attachChild(crosshair);
BitmapText instructionsText1 = new BitmapText(guiFont);
instructionsText1.setText("Left Click: Remove");
instructionsText1.setLocalTranslation(0, settings.getHeight(), 0);
guiNode.attachChild(instructionsText1);
BitmapText instructionsText2 = new BitmapText(guiFont);
instructionsText2.setText("Right Click: Place");
instructionsText2.setLocalTranslation(0, settings.getHeight() - instructionsText2.getLineHeight(), 0);
guiNode.attachChild(instructionsText2);
BitmapText instructionsText3 = new BitmapText(guiFont);
instructionsText3.setText("Bottom Layer Cannot Be Broken");
instructionsText3.setLocalTranslation(0, settings.getHeight() - (2 * instructionsText3.getLineHeight()), 0);
guiNode.attachChild(instructionsText3);
}
private void initPlayer(){
playerControl = new CharacterControl(new CapsuleCollisionShape((cubesSettings.getBlockSize() / 2), cubesSettings.getBlockSize() * 2), 0.05f);
playerControl.setJumpSpeed(25);
playerControl.setFallSpeed(140);
playerControl.setGravity(100);
playerControl.setPhysicsLocation(new Vector3f(5, 257, 5).mult(cubesSettings.getBlockSize()));
bulletAppState.getPhysicsSpace().add(playerControl);
}
@Override
public void simpleUpdate(float lastTimePerFrame) {
float playerMoveSpeed = ((cubesSettings.getBlockSize() * 2.5f) * lastTimePerFrame);
Vector3f camDir = cam.getDirection().mult(playerMoveSpeed);
Vector3f camLeft = cam.getLeft().mult(playerMoveSpeed);
walkDirection.set(0, 0, 0);
if(arrowKeys[0]){ walkDirection.addLocal(camDir); }
if(arrowKeys[1]){ walkDirection.addLocal(camLeft.negate()); }
if(arrowKeys[2]){ walkDirection.addLocal(camDir.negate()); }
if(arrowKeys[3]){ walkDirection.addLocal(camLeft); }
walkDirection.setY(0);
playerControl.setWalkDirection(walkDirection);
cam.setLocation(playerControl.getPhysicsLocation());
}
@Override
public void onAction(String actionName, boolean value, float lastTimePerFrame){
if(actionName.equals("forward")) {
arrowKeys[0] = value;
}
else if(actionName.equals("right")) {
arrowKeys[1] = value;
}
else if(actionName.equals("left")) {
arrowKeys[3] = value;
}
else if(actionName.equals("backward")) {
arrowKeys[2] = value;
}
else if(actionName.equals("jump")) {
playerControl.jump();
}
else if(actionName.equals("fps_show")) {
setDisplayFps(true);
}
else if(actionName.equals("fps_hide")) {
setDisplayFps(false);
}
else if(actionName.equals("place") && value){
Vector3Int blockLocation = getCurrentPointedBlockLocation(true);
if(blockLocation != null){
blockTerrain.setBlock(blockLocation, Block_Wood.class);
}
}
else if(actionName.equals("break") && value){
Vector3Int blockLocation = getCurrentPointedBlockLocation(false);
if((blockLocation != null) && (blockLocation.getY() > 0)){
blockTerrain.removeBlock(blockLocation);
}
}
}
private Vector3Int getCurrentPointedBlockLocation(boolean getNeighborLocation){
CollisionResults results = getRayCastingResults(terrainNode);
if(results.size() > 0){
Vector3f collisionContactPoint = results.getClosestCollision().getContactPoint();
return BlockNavigator.getPointedBlockLocation(blockTerrain, collisionContactPoint, getNeighborLocation);
}
return null;
}
private CollisionResults getRayCastingResults(Node node){
Vector3f origin = cam.getWorldCoordinates(new Vector2f((settings.getWidth() / 2), (settings.getHeight() / 2)), 0.0f);
Vector3f direction = cam.getWorldCoordinates(new Vector2f((settings.getWidth() / 2), (settings.getHeight() / 2)), 0.3f);
direction.subtractLocal(origin).normalizeLocal();
Ray ray = new Ray(origin, direction);
CollisionResults results = new CollisionResults();
node.collideWith(ray, results);
return results;
}
public void attachRootChildTerrain(){ //THIS IS CALLED IN THE GENERATOR CLASS!!
rootNode.attachChild(gen.terrainNode);
}
}
第二类:生成器:
public class Generator {
private CubesSettings cubesSettings;
private BlockTerrainControl blockTerrain;
private final Vector3Int terrainSize = new Vector3Int(1000, 256, 1000);
private final Vector3Int bottomLayer = new Vector3Int(1000,1,1000);
private BulletAppState bulletAppState;
public Node terrainNode = new Node();
private SimpleApplication sa;
private Main main;
public void initBlockTerrain(){
CubesTestAssets.registerBlocks();
CubesTestAssets.initializeEnvironment(sa);
cubesSettings = CubesTestAssets.getSettings(sa);
blockTerrain = new BlockTerrainControl(cubesSettings, new Vector3Int(7, 1, 7));
blockTerrain.setBlocksFromNoise(new Vector3Int(), terrainSize, 20f, Block_Grass.class);
blockTerrain.setBlocksFromNoise(new Vector3Int(), bottomLayer, 0.0f, Block_Stone.class);
blockTerrain.addChunkListener(new BlockChunkListener(){
@Override
public void onSpatialUpdated(BlockChunkControl blockChunk){
Geometry optimizedGeometry = blockChunk.getOptimizedGeometry_Opaque();
RigidBodyControl rigidBodyControl = optimizedGeometry.getControl(RigidBodyControl.class);
if(rigidBodyControl == null){
rigidBodyControl = new RigidBodyControl(0);
optimizedGeometry.addControl(rigidBodyControl);
bulletAppState.getPhysicsSpace().add(rigidBodyControl);
}
rigidBodyControl.setCollisionShape(new MeshCollisionShape(optimizedGeometry.getMesh()));
}
});
terrainNode.addControl(blockTerrain);
terrainNode.setShadowMode(RenderQueue.ShadowMode.CastAndReceive);
main.attachRootChildTerrain();
}
}
错误:
java.lang.NullPointerException
at com.bminus.Main.simpleInitApp(Main.java:110)
at com.jme3.app.SimpleApplication.initialize(SimpleApplication.java:226)
at com.jme3.system.lwjgl.LwjglAbstractDisplay.initInThread(LwjglAbstractDisplay.java:130)
at com.jme3.system.lwjgl.LwjglAbstractDisplay.run(LwjglAbstractDisplay.java:207)
at java.lang.Thread.run(Thread.java:744)
这是我第一次尝试使用多个类。我猜我忘记从 Generator 类中调用某些内容或将某些内容设为 public
而不是 private
但我不确定。如果有人能弄清楚这一点,我们将不胜感激。谢谢!
编辑:我按照你们的建议做了(我认为),但我得到了这个错误:
Exception in thread "main" java.lang.StackOverflowError
at sun.misc.Unsafe.putObject(Native Method)
at java.util.concurrent.ConcurrentLinkedQueue$Node.<init>(ConcurrentLinkedQueue.java:187)
at java.util.concurrent.ConcurrentLinkedQueue.<init>(ConcurrentLinkedQueue.java:255)
at com.jme3.app.Application.<init>(Application.java:94)
at com.jme3.app.SimpleApplication.<init>(SimpleApplication.java:102)
at com.jme3.app.SimpleApplication.<init>(SimpleApplication.java:98)
at com.bminus.Main.<init>(Main.java:88)
at com.bminus.Generator.<init>(Generator.java:31)
at com.bminus.Main.<init>(Main.java:47)
由于这是一个溢出错误,最后两行错误将永远持续下去!我的代码中被称为错误的行是:
public Main(){}
,
private Main main = new Main();
和
private Generator gen = new Generator(this);
我不知道为什么会发生这种情况,但如果你们中有人这样做了,那么知道如何解决它就太好了。谢谢!
最佳答案
调试 NullPointerException 时最重要的是找到引发异常的行。您尝试在该行上使用的变量为空。
<小时/>可能的罪魁祸首:
在您的 Main 类中,您的 Generator 变量 gen 从未分配过实例,因此为 null。通过调用 Generator 构造函数为其提供一个实例。
gen = new Generator();
在您的 Generator 类中,Main 字段 main 为 null,因为您从未为其分配 Main 实例。我建议您为构造函数提供一个 Main 参数,以便您可以将在 main 方法中创建的当前使用的 Main 实例(这些名称很困惑!)传递到您的 Generator 类中,并使用此参数来初始化您的主字段。
即,
public Generator(Main main) {
//.....
this.main = main; // give the main field an object
}
因此将上面创建生成器的代码更改为:
gen = new Generator(this);
关于java - 尝试将一个方法从一个类引用到另一个类 = NullPointerException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22721844/
我正在将我的模板代码移植到 XTend。在某些时候,我在测试用例中有这种类型的条件处理: @Test def xtendIfTest() { val obj = new FD if (
我是新来的 kotlin , 当我开始 Null Safety 时,我对下面的情况感到困惑. There's some data inconsistency with regard to initia
我的应用程序一直在各种Android版本中保持良好状态。我有用户在Android 4.3、5.0、5.1和6.0上正常运行。但是,具有S7 Edge的用户刚刚更新了Android 7.0,将文本粘贴到
我使用的是最新版本的 LWUIT (1.5)。我在资源编辑器中设计了我的表单,然后将代码生成到 netbeans。问题是如果我想访问除表单之外的任何对象,我会收到此错误: java.lang.Null
更新: 我在 Fedora 21 上运行它。 SonarQube - 5.0。 SonarQube Runner - 2.4 更新 2:Findbugs v3.1,Java 插件 v2.8 更新3:
RecupData 我的类仅在 web 中返回 NullPointerException。我连接到 pgsql db 8.3.7 - 该脚本在“控制台”syso 中运行良好 - 但引发了测试 Web
我在 mac 上使用 Processing 2.08。我正在尝试使用文档中给出的 createShape 函数创建 PShape。 PShape s; void setup(){ size(500
我在 mac 上使用 Processing 2.08。我正在尝试使用文档中给出的 createShape 函数创建 PShape。 PShape s; void setup(){ size(500
每次运行此 jsp 时,都会收到以下错误异常: org.apache.jasper.JasperException: java.lang.NullPointerException root cause
Kotlin 在编译时有一个出色的 null 检查,使用分离到“可空?”和“不可为空”的对象。它有一个 KAnnotator 来帮助确定来自 Java 的对象是否可以为空。但是,如果 not-null
我有一个布局将显示一个TextView,用于显示一个滴答时间。我遵循了此链接中的代码 How to Display current time that changes dynamically for
Elasticsearch 1.4.1版(“lucene_version”:“4.10.2”) 我有一个像这样的文件: $ curl 'http://localhost:9200/blog/artic
这是我从另一个类调用函数的方法Selenium 设置已定义。 public void Transfer() throws Exception { System.out.println("\nTrans
我试图在主类中使用我在此类中创建的函数,但它崩溃并显示“警告:无法在根 0 处打开/创建首选项根节点 Software\JavaSoft\Prefsx80000002。 Windows RegCrea
这个问题已经有答案了: What is a NullPointerException, and how do I fix it? (12 个回答) 已关闭 3 年前。 我有一个 Java 代码,它将
我声明了两张牌: Card card1 = new Card('3', Card.Suit.clubs); Card card2 = new Card('T', Card.Suit.diamonds)
我编写了一段代码来解码 Base64 图像并在 javafx 中表示该图像。在我的 url base64 代码中不断变化。这就是我在 javafx 代码中使用任务的原因。但我收到错误:java.lan
我正在尝试使用 arrayList 的 arrayList 在 Java 中实现图形。 每当调用 addEdge 函数时,我都会收到 NullPointerException 。我似乎无法弄清楚为什么
我是 Java/android 的新手,所以很多这些术语都是外国的,但我愿意学习。我不打算详细介绍该应用程序,因为我认为它不相关。我目前的问题是,我使用了博客中的教程和代码 fragment ,并使我
我正在开发一个 Android 应用程序来在 Android developer guide 的帮助下录制视频.我程序上的所有代码都与此页面相同。 我在 之外定义了权限标签。 当应
我是一名优秀的程序员,十分优秀!