Forum: Java Oct 18th, 2008 |
| Replies: 8 Views: 1,259 Well, if you know for sure that the license plate has the format "LLL NNN" (I mean letter by L and number by N), then you can get the integer value like this:
int anIntegerValue =... |
Forum: Java Aug 13th, 2008 |
| Replies: 6 Views: 463 public class User {
protected String userName;
protected String password;
protected String eMail;
private String aString = "I won't be inherited!!!";//It really won't
public... |