You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
500 B
Java

Transfer Account
package com.ack.learning.examples.account;
public class TransferAccount {
private static int count;
public TransferAccount() {
++TransferAccount.count;
}
public static int getObjectCount() {
return TransferAccount.count;
}
public static void main( String[] args ) {
TransferAccount ta = new TransferAccount();
TransferAccount da = new TransferAccount();
System.out.println( TransferAccount.getObjectCount() );
}
}