|
|
|
|
|
by invalidname
1185 days ago
|
|
Wouldn't the try with resources example be better served by allowing this syntax? try (Metrics.newTimer("getOrders")) {
return db.getOrders();
}
> Another common example is when you are implementing an interface method or overriding a superclass methodThis doesn't seem to be supported and could cause many issues e.g. if a base interface adds an overloaded method with a similar signature. Suddenly we will have a conflict and compilation issues. > This JEP would allow stronger static analysis rules like "every declared parameter and variable MUST be used", and _ would serve as the canonical escape hatch for edge cases. This is a good point. I'm not sure if it's worth the odd syntax and potential misuse but it is interesting. |
|
> This doesn't seem to be supported and could cause many issues e.g. if a base interface adds an overloaded method with a similar signature. Suddenly we will have a conflict and compilation issues.
I think this is already a risk when modifying interfaces or superclasses. For example, if you add a method to a superclass, a subclass might already have a method with the same name/arguments but different return type, which would break compilation.