developerinlondon
Programmer
Does Java have a way of passing default values to constructors?
eg
public MyConstructor(ResultSet rs, String ip, DataSource ds,
String parserURL = null) {
...
}
this is the version that doesnt work in java.
eg
public MyConstructor(ResultSet rs, String ip, DataSource ds,
String parserURL = null) {
...
}
this is the version that doesnt work in java.