Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Hello,

this might be a Java question but I am new to java so please don't write "Learn Java"

I extended a TileEntity and it is working fine except for variables, when I define a Variable in the Constructor the value won't be shown in the SubClass. When i try to print the Value of the Variable I am getting NaN("Not a Number")

 

My code:

 

TileEntity:

import net.minecraft.tileentity.TileEntity;

public class TileEntity extends TileEntity {

public int var = 1;
}

SubTileentity:

import net.minecraft.tileentity.TileEntity;

public class SubTileEntity extends TileEntity {

public void updateEntity() {

	System.out.println(this.var);

}
}

 

 

PM's regarding modding questions should belong in the Modder Support sub-forum and won't be answered.

Hello,

this might be a Java question but I am new to java so please don't write "Learn Java"

I extended a TileEntity and it is working fine except for variables, when I define a Variable in the Constructor the value won't be shown in the SubClass. When i try to print the Value of the Variable I am getting NaN("Not a Number")

 

My code:

 

TileEntity:

import net.minecraft.tileentity.TileEntity;

public class TileEntity extends TileEntity {

public int var = 1;
}

SubTileentity:

import net.minecraft.tileentity.TileEntity;

public class SubTileEntity extends TileEntity {

public void updateEntity() {

	System.out.println(this.var);

}
}

 

 

 

import net.minecraft.tileentity.TileEntity;

public class TileEntity extends TileEntity {

public int var = 1;
}

 

Why do you name your main TileEntity class the same as the vanilla one? It doesn't look good and causes confusion. But whatever, the problem is this:

import net.minecraft.tileentity.TileEntity;

public class SubTileEntity extends TileEntity {

 

Your import looks wrong. You need to import YOURPACKAGE.YOURSUBPACKAGE.TileEntity not net.minecraft.tileentity.TileEntity.

Again, if you would have named your class different, you would have seen this.

Don't ask for support per PM! They'll get ignored! | If a post helped you, click the "Thank You" button at the top right corner of said post! |

mah twitter

This thread makes me sad because people just post copy-paste-ready code when it's obvious that the OP has little to no programming experience. This is not how learning works.

like SanAndreasP said, you do not want to name the class the same thing as the class you are extending.

 

Try

 

public class TileEntityA extends TileEntity {

public int var = 1;
}

 

then

 

public class SubTileEntity extends TileEntityA {

 

Think of it as a hierarchy, TileEntity -> TileEntityA -> SubTileEntity  you cannot grab a variable that is declared in TileEntityA from the base Tile Entity, but you can grab it from SubTileEntity because it extends TileEntityA.  Hope that makes sense, I'm still learning java myself.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.