Victor Lee napisał(a):
> Hi,
> I have a java code like this:
>
> Car racecar = Car(0, 2);
>
> How do I do this with php-java-bridge?
>
> If I do this:
>
> $racecar = new Java("Car");
>
> then where do I put the parameter 0 and 2?
$racecar = new Java("Car", 0, 2);
|