Tagged Questions
The java-language-spec tag has no wiki summary.
6
votes
6answers
3k views
Why does this excede the 65,535 byte limit in Java constructors and static Initializers?
Disclaimer: I realize I can generate this at runtime in Java, this was needed for a very special case while performance testing some code. I've found a different approach, so now this is just more of ...
4
votes
2answers
88 views
Annotation attribute must be a class literal? Why? Constants should be fine too
Can someone explain why String and Class annotation parameters are expected differently? Why does the compiler require literals for Classes, wherby accepting constants for Strings as well?
Working ...
3
votes
6answers
90 views
java protected modifier
I have just got weird error which involves protected modifier.
I have following code:
package p1;
public class C1 {
protected void doIt() {}
}
package p2;
public class C2 extends p1.C1 {
...
3
votes
2answers
338 views
Most specific method with matches of both fixed/variable arity (varargs)
In section 15.12.2.5 of the Java Language Specification, it talks about how to choose the most specific method in both cases of methods with fixed arity and methods of variable arity (i.e. varargs).
...
0
votes
1answer
20 views
How should I read the syntax descriptions in the JLS?
From the Java Language Specification (third edition), section 3.10.5:
StringLiteral:
" StringCharactersopt "
StringCharacters:
StringCharacter
StringCharacters ...