Frank
Neues Mitglied
Hey,
Ich habe mich nun ein bissl mit Java beschäftigt.
Nun habe ich ein Problem, mein Konstruktor wird nicht erkannt:
Beim erzeugen einer Instanz bekomme ich keine Ausgabe (die ich laut Konstruktor bekommen müsste)
Woran kann das liegen?
Ich habe mich nun ein bissl mit Java beschäftigt.
Nun habe ich ein Problem, mein Konstruktor wird nicht erkannt:
Code:
import org.apache.xmlrpc.XmlRpcClient;
import java.util.Vector;
/**
* LotteryV4
* A lottery for TrackmaniaUnited
* Including a Top 5 and a Vote
* cancelling / proceeding module
*/
public class TMInterface
{
private XmlRpcClient client;
private String address;
private int port;
public void TMInterface()
{
address = "localhost";
port = 5000;
System.out.println(address);
System.out.println("\n");
System.out.println(port);
}
public void setAddress(String newAddress)
{
address = newAddress;
}
public void setPort(int newPort)
{
port = newPort;
}
public boolean connect()
{
System.out.println(address+port);
//client = new XmlRpcClient(address+port);
return true;
}
}
Beim erzeugen einer Instanz bekomme ich keine Ausgabe (die ich laut Konstruktor bekommen müsste)
Woran kann das liegen?