Java > Learning
Account this
Account this package com.ack.learning.examples.account; public class AccountThis { public AccountThis() { System.out.println( "created an account object" ); } public AccountThis( String name ) { this(); System.out.println( "created account with name " + name ); } public AccountThis( String name, double amount ) { this( name ); System.out.println( "create account with amount " + amount ); } public static void main( String[] args ) { AccountThis hsbc = new AccountThis( "jerry", 25d ); } }
Java Codes
Beginners
Core Java
Date Time
Java2D
Java Applets
Java AWT
Mathematics
Networking
Servlets
Session
Sound
Swing
Threads
Util Package
JDBC
Learning
Other
Security
XML