Super Call / Subclasses And Inheritance

Feb 12, 2014

what does super(); do in the following method, I understand its uses to access variables belonging to the superclass but i am unsure of what that one line does. Here is a sample constructor..

public CreditCard()
{
// fill in the default constructor and use the super call
super();
id = "000000";
year = 0;
}

View Replies


ADVERTISEMENT

Inheritance Super Variables - Fail To Return Null

Aug 13, 2014

I'm writing a simple program in which I have a super class Person, inherited by the subclasses Customer and Employee (they inherit the variables ID, name and surname).

Java Code:

public class Person {
int id;
String name;
String surname;
public Person () {

[Code] .....

However the problem is here: when I try to get the variables ID, name and surname through my main class, they fail to return (0,null,null). Why is this? I have get-Methods in my subclasses which should return the super variables, but they are not.

Java Code:

public String getUser() {
return username;
}

public String getName() {
return super.name;
} mh_sh_highlight_all('java');

View Replies View Related

Super Constructor Call - Creating Object

Sep 18, 2014

Its written that every constructor calls its super class constructor. And we know, constructors are called to create an object. Does it mean that if I am creating an object of a class, I am actually creating objects of all its super class???

View Replies View Related

Subclasses With Unique Static Variables

Oct 22, 2014

Say I have a class called ClassA which I want to hold my data. Now inside ClassA want to hold instances of a class lets call ClassB. So far we are here.

import blah.B
public class A {
private B myB;
(Getters setters etc)
public String getBString() {
B.getString();
}
}

However I want to have multiple extensions of ClassB which have UNIQUE static variables.

public class B-1 extends B {
private static String mString;
private static int mInt;
}

The problem I have run into is I can't have subclasses with their own static variables. I need the A class to hold any type of B class. How can I manage this?meant

public String getBString{
return B.getString();
}

View Replies View Related

Loop Through Objects Of Subclasses To Show Area Of Each?

Oct 13, 2014

This assignment requires me to show areas of each shape by using loop. I can do it with abstract and interface , but in this case. I don't know how to use method getArea() to loop for each object

import java.util.ArrayList;
public class TestShape {
ArrayList<Shape> list = new ArrayList<Shape>();
Circle c;
Rectangle r;
Square s;
public TestShape() {

[Code] .....

View Replies View Related

Java Generics Super And Ext

Jun 17, 2014

Set<? super TreeMap> s = new HashSet<SortedMap>();

SortedMap<String,String> sm = new TreeMap<String,String>();
TreeMap<String,String> tm = new TreeMap<String,String>();
s.add(sm); //This fails
s.add(tm);

Why does adding sorted map to a Set that allows ? super TreeMap and instantiated as such fail?

View Replies View Related

Generics Super Keyword

Feb 14, 2014

Suppose I have

class A {
public void speak() {
System.out.println("I am class A");
}
}

class B extends A{
public void speak() {
System.out.println("I am class B");
}
}

class C extends B{
public void speak() {
System.out.println("I am class C");
}
}

Why this doesn't work while A is a super type of B ?

public static void insertElements(List<? super B> list){
list.add(new A()); //not OK, why?
}

View Replies View Related

Swing/AWT/SWT :: Relationship Between Super And Child?

Aug 27, 2014

I want to make an application and must use strategy pattern my idea is to create a super class in this case Movie Player and three sub classer and they'll komminesera with each other using strattegy pattern, one of the sub classes is Button Panel and I want to add it to Movie Player and it was to be its child,so how can I add the butt panel to Movie Player and it shall be its children?

MoviePlayer:
import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import com.github.sarxos.webcam.WebcamPanel;

[code]....

View Replies View Related

Super Class - Getting Error Identifier Expected

Aug 9, 2014

I created a superclass Ships and under that a class CivilShips. Under that HumanBulkFreighter.

I declared variables in Ships and CivilShips and wanted to have them set in HBF to a specific value. When I know try to compile them I get the following:

HumanBulkFreighter.java:2: error: <identifier> expected
cargo=1500;
^
HumanBulkFreighter.java:3: error: <identifier> expected
size=200;

[Code] ....

View Replies View Related

Super Keyword When Used Explicitly In A Subclass Constructor

Jul 9, 2014

The super keyword when used explicitly in a subclass constructor must be the first statement but what about if i have a this(parameters) statements ? As the this one must also be the first statement... Does this means that i can have only one or the other ? What about when the super constructor is not explicit (aka implicit ) , can i use the this( parameters) in the same constructor ?

View Replies View Related

How To Get Access From Variables In Super Class Or Subclass

Dec 2, 2014

how to get access from variables in a super class or a subclass. Here is what I got:

1) I have a super class that is in Jar file, I created a link in Eclipse, I know that the link is created correctly, I am going to concentrate just in one variable, so I don’t have to put all the code here firstName; in the super class(the one that is define in the path)

public class CommissionEmployee {
// Field descriptor #6 Ljava/lang/String;
private java.lang.String firstName;

in my class i have 6 argument constructor

View Replies View Related

Set Methods In Super And Subclass By Using Dialog Boxes

Nov 7, 2014

I am creating a set of 3 subclasses, 1 superclass, and an application. In my instructions it says to make set methods in my super and subclass by using dialog boxes. In the application you have 3 different arrays where you create objects and are supposed to call the methods from the subclasses to be used in the application. I don't know how to make the dialog boxes from my subclasses to show up in my application.

View Replies View Related

Program Shows Error While Using Super Keyword

Jan 3, 2015

//constructor
class Base
{
Base(int a) {
System.out.println("in base"+a);;
}
}
class Cons extends Base

[Code] .....

View Replies View Related

Why Super Classes Always Declared As Interfaces And Not Abstract Class

Dec 1, 2014

While reading the design patter book, i got one doubt ,There is a List an interface having sub classes ArrayList, LinkedList etc.,

Q1) My question is Why they declared the List as interface rather than Abstract class?

Q2) i read some site -

List l = new ArrayList(); Why it is GOOD line?
ArrayList l = new ArrayList() ; Why it is BAD line?

Answer required with detailed information for Q1 and Q2.

View Replies View Related

Swing/AWT/SWT :: SetLayout Does Not Override Or Implement Method From Super Type?

Sep 12, 2014

I am trying to make a ChessBoard class composed of an array of JLabels inside a JPanel with a grid layout. I am also trying to override the getPreferredSize method so that the board will change size when I resize the main window (in another class in which I will instancize this class as part of a larger GUI). I got this kind of layout working before, but now I am trying to get it to work with multiple classes. However, after copying in the part of the previous code corresponding to the panel's layout, I am encountering some errors that I don't know how to solve. Specifically, when I try to override the getPreferredSize method, the compiler tells me "method does not override or implement a method from a super type, " and that it can't find the method "getPreferredSize"

Here's my code:

public class ChessBoard extends JPanel//the panel that this class extends is the boardHousing
{
//mental chess board piece array
Piece mentalBoard[][] = new Piece[8][8];
//actual GUI chessboard JLabel Array
static JLabel chessBoard[][] = new JLabel[8][8];

[Code] ....

I would just think that I was overriding the method incorrectly, but the weird thing is that I got that specific section of code to work before -- the only thing different now is that there are multiple classes, so my ChessBoard class itself is extending JPanel.

View Replies View Related

Displaying Override In Inheritance

Jul 11, 2014

I'm learning about inheritance and part of my problem is to create an Order with methods, then an UpdateOrder where the total price is changed by adding four dollars to it, and then a main method displaying a few orders. I've copied all three below in order. My question is when I run the program it will display the totalprice() first for the second order followed by name, number, etc.what you override always displayed first regardless of the order you put them in? (The issue is at line 31 on the third code.)

import javax.swing.JOptionPane;
public class Order { //superclass
private String customerName;
private int customerNumber;
protected int quantityOrdered;
protected double unitPrice;
protected double totalPrice;

[code]....

View Replies View Related

Difference Between Abstract And Inheritance

Dec 16, 2014

I am new to java i dont understand the difference between the abstract and inheritance i mean we use the abstract class with extends with other class name ,even we do that same in the inheritance pls tell me main difference between abstract and inheritance...

View Replies View Related

How Inheritance And Exception Work Together

Jun 10, 2014

how inheritence and exception work together ?? what are the rules ??

View Replies View Related

Static Fields And Inheritance

Apr 17, 2014

If I define a class which contains a few static fields, and then have a few classes who inherit this class, then all these classes would have the static field as well. Now my question is the following: would all those sub classes (and the base class itself) share the same object, or would each class have one object for all it's instances?

View Replies View Related

Inheritance Failure In Same Package

Feb 24, 2014

I've tried to write a package and two classes this way:

<path>/pack/Aclass.java
Java Code: package pack;
public class Aclass<T> {
private T t;
public void set(T t) {
this.t = t;

[code]....

View Replies View Related

Inheritance For Word Pattern

Apr 24, 2014

I am in an intro programming class and we got assigned a problem for creating a super class with about a dozen sub classes for generating a random word(via WordGetter class) and then comparing that word to a variety of different patterns(like: does the word contain "re"). We were given the super class which looks like this...

public class Pattern {
public boolean matches(String text) {
return true;
}
public String toString() {
return "(TRUE)";

[code]...

and from this class, we have to write subclasses that override those three methods. I am struggling to understand inheritance and I am not really sure where to even start. Here is the instructions for the first sub class we need to write...

"CONTAINS" SUBCLASS
Constructor: The constructor accepts a String named ‘letters’.

Matches: This pattern matches any text that contains at least one occurrence of each ‘letter’.
toString: produces the text “(CONTAINS <LETTERS>)” where <LETTERS> is the ‘letters’ string.
getLetters(): this method must return letters.
equals(Object): careful on this one. Two Contains are equal if they have the same letters (order is not relevant).
(Example):

Pattern p = new Contains(“re”);
boolean f1 = p.matches(“renew”); // f1 is true
boolean f2 = p.matches(“zoo”); // f2 is false
String s = p.toString(); // s is “(CONTAINS re)”
boolean f3 = p.equals(new Contains(“er”)); // f3 is true.. really..

View Replies View Related

Inheritance And Private Methods

Jul 6, 2014

The first is clear , new Person().printPerson(); displays Person but for the second : new Student().printPerson(); it accesses the Student constructor that points to the Person class => object. It builds the Person instance then goes back to the Student constuctor .Both methods are private and to my knowledge invisible one to the other , except that you cant run the the Person one because it's private so the only one in the Student class is the Student one . Guess it 's incorrect , but why ? (is because private methods cant be overriden and somehow the super class one always has priority ? , even if it's private?)

public class Test {
public static void main(String[] args) {
new Person().printPerson();
new Student().printPerson();

[code]....

View Replies View Related

Inheritance Method Calls

Jun 25, 2014

If i have 2 classes, Top and ClassB which extends Top

public class Top {
String variable;
public Top(){
setVariable();
}
void setVariable(){
variable = "variable is initialized in Main Class";

[code]....

So what is happening when ClassB inherits from Top?I know that the B constructor is calling super, so does that mean its calling setVariable (in Top?) but as its overridden in ClassB, then that is whats being called and setting the String variable?

View Replies View Related

Inheritance - Extended Class

Sep 26, 2014

Here is my abstract Boat class.

public abstract class Boat{
private int height;
private int length;
private int width;
private double boatValue;
private double chargeRate;
private Owner owner;
public Owner getOwner() {
return owner;

[Code] ....

View Replies View Related

Implementing Inheritance In Java

Apr 25, 2014

i was leaning inheritance and tried to implement it in Java.This is my base class vehicl.java

public class vehicle{
private int topSpeed;
private int cubicCap;
private String modelName;
private boolean hasAlloy;

[code]...

I also have a derived class called car.java.What i wanted to do in the derived class was that i wanted to override the constructor as well as the getInfo() method from the base class.I wanted to add an additional attribute to the car "numberSeats" and display tat too when the object to car class calls the getInfo() method .It showed an error "identifier required" when i tried to compile car.java program.

import java.util.Scanner;
public class car extends vehicle{
//int numberSeats;
//System.out.println("Enter the number of Seats");
Scanner numberSeats=new Scanner(System.in);
numberSeats=numberSeats.nextInt();
//System.out.println(numberSeats.nextInt());

[code]....

explain the errors that i get when i tried to compile car.java without using super keyword or without defining the constructor from the Car class ?

View Replies View Related

Compare Inheritance And Design Patterns?

Apr 30, 2014

Design Patterns are one form of reuse. so is inheritance. what are the similarities and difference between them?

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved