I have failed. Yes, believe it. I have been unable to generate a static method in constructor#2 to call constructor#1. Any help would be much appreciated. Thank you in advance.
sample code:
public class CardApplet extends Applet
{....
public void init()
{...
class Card
{...
public Card(int posX, int posY, int suit1, int rank1)
{...// Constructor#1
public Card (int X, int Y)
{...//Constructor #2
this("reference to a void function"
; X = posX; Y = posY;
sample code:
public class CardApplet extends Applet
{....
public void init()
{...
class Card
{...
public Card(int posX, int posY, int suit1, int rank1)
{...// Constructor#1
public Card (int X, int Y)
{...//Constructor #2
this("reference to a void function"