Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations sizbut on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Why a missing ; ?

Status
Not open for further replies.

chals1

Technical User
Sep 3, 2003
73
ES
Compilator shouts :

';' expected
return "Resultado :" + a " + " + b + " i ";

on this piece:

public String toString() {
return "Resultado :" + a " + " + b + " i ";
}
 
I believe you haev another error:
public String toString() {
return "Resultado :" + a +" + " + b + " i ";
}


Ion Filipski
1c.bmp
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top