Hi All,
I have created a Class named Stock and have declared three Constructor . First constructor with no parameter, second constructor with three parameter, third with Two parameter.
When I call my constructor inside a System.out.println(constructor); , it should display the variable Values right ? . but instead it outputs default toString Value.
Please explain this behaviour.
output :
stock.Stock@517667bd
ouput im expecting is (as per the book im referring)
20 sa 4.0
my code is as follows :
// this is the Stock class which has constructor
public class Stock {
private int noOfShares;
private String tickerSymbol;
private double dividend;
public Stock() {
noOfShares=0;
tickerSymbol="[UA]";
dividend=0.0;
}
public Stock(int inNoOfShares,String inTickerSymbol,double inDividend)
{
System.out.println("label");
noOfShares = 10;
tickerSymbol="firstticker";
dividend = 23;
}
public Stock(int inNoOfShares,double inDividend)
{
noOfShares=20;
tickerSymbol="Secondticker";
dividend = 46;
}
}
import stock.Stock;
public class StockTest {
public static void main(String[] args) {
int noOfShares;
String tickerSymbol;
double dividend;
Stock stockOne ;
Stock stockTwo ;
Stock stockThree ;
stockOne = new Stock(20,"sa",4.0);
System.out.println(stockOne);
}
}