The Java Language Specification is the definitive technical reference of the Java programming language. It describes the language in full detail and is usually the final source of answers for questions about Java. Questions with this tag often expect an answer that is based on the JLS and is not ...
23
votes
5answers
1k views
Java in operator
For the one millionth time, I would have liked to use an IN operator in Java, similar to the IN operator in SQL. It could just be implemented as compiler syntactic sugar. So this
if (value in (a, b, ...
16
votes
2answers
305 views
Java casting: is the compiler wrong, or is the language spec wrong, or am I wrong?
I have been reading the Java Language Spec, 3rd edition, and have found what I think is a discrepancy between the spec and the javac compiler implementation. The same discrepancies exist in the ...
15
votes
3answers
2k views
When will the Java Language Specification, 4th edition be available?
Now that the JDK 7 developer preview is out, one might think that it's time for a new JLS. After all, there have been changes to the language, albeit small ones.
I haven't found anything yet. When ...
12
votes
2answers
259 views
Java: overloaded method resolution and varargs — confusing example
Just when I thought I understood JLS15.12 as it applied to varargs, here's this example:
package com.example.test.reflect;
public class MethodResolutionTest2 {
public int compute(Object obj1, ...
10
votes
2answers
375 views
Why doesn't a Java constant divided by zero produce compile time error? [closed]
Possible Duplicate:
Is 1/0 a legal Java expression?
Why does this code compile?
class Compiles {
public final static int A = 7/0;
public final static int B = 10*3;
public ...
10
votes
3answers
392 views
Why Java methods with varargs identified as transient?
I was playing with Java Reflection API and observed that methods with varargs become transient. Why is that and what does transient keyword mean in this context?
From Java Glossary, transient:
A ...
8
votes
1answer
118 views
What are the formal conditions for a wildcard parameter in a Java generic type to be within its bounds?
With parameterized types in Java, how do the rules that check if a parameter is within its bound work exactly for wildcards?
Given a class like this:
class Foo<T extends Number> {}
...
6
votes
1answer
116 views
Java “fresh type variable”
What means "fresh type variable" in that JLS chapter: http://java.sun.com/docs/books/jls/third_edition/html/conversions.html#190795
6
votes
4answers
86 views
Are subcontexts in Java separate rows on the stack?
In Java this is the case:
public void method() {
if (condition) {
Object x = ....;
}
System.out.println(x); // Error: x unavailable
}
What I'm wondering is this: Is the fact that x is ...
4
votes
2answers
107 views
Java: compile-time resolution and “most specific method”
The overloaded functions compute1(), compute2(), and compute5() cause compilation errors if you try to use them below:
package com.example.test.reflect;
class JLS15Test2
{
int compute1(Object ...
4
votes
3answers
143 views
Java: compile-time resolution and “most specific method” as it applies to variable arity
Could someone help me understand section 15.12.2.5 of the JLS re: most specific method?
(bludgeoned cut&paste from JLS follows)
In addition, one variable arity member method named m is more ...
4
votes
2answers
492 views
What is a capture conversion in Java and can anyone give me examples?
I've noticed JLS talks of 5.1.10 Capture Conversion, but I fail to understand what they are.
Can anyone explain them to me/give examples?
4
votes
2answers
198 views
Errata for Java Language Specification 3rd Edition
I use JLS extensively both as a learning and teaching resource, but I've noticed that there are some errors in it.
There's the simple typos (e.g. JLS 5.1.4 "convesions"), but there's also some that I ...
3
votes
8answers
117 views
why Integer.MAX_VALUE + 1 == Integer.MIN_VALUE?
System.out.println(Integer.MAX_VALUE + 1 == Integer.MIN_VALUE);
is true.
I understand that integer in Java is 32 bit and can't go above 2^31-1, but I can't understand why adding 1 to its MAX_VALUE ...
3
votes
2answers
27 views
What (in the specs) warrants that 'non short circuit logical operators will in fact not short circuit?
This is directly inspired by this question.
There are numerous references/statements that bitwise operators, when applied to booleans, will not short circuit. So in other words boolean a = f() & ...
3
votes
3answers
107 views
How JLS corresponds to Sun javac / why they do not match
in java given this:
String a = "str";
CharSequence b = "charseq";
you can write
b = b + a;
but cannot write (gives a compiler error)
b += a;
error is
incompatible types
found : ...
3
votes
3answers
128 views
Cases where the imports in Java aren't needed (unusual qualification) [Question Edited]
I've noticed there are some special ways to qualify an entity in Java:
Object o = new Outer().new Inner();
In this case, we are qualifying the Inner class with the Outer class, so we only need to ...
3
votes
8answers
538 views
In Java, why can't I write i++++ or (i++)++?
When I try to write a postfix/prefix in/decrement, followed by a post/prefix in/decrement, I get the following error: Invalid argument to operation ++/--.
But, according to JLS:
...
3
votes
2answers
351 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).
...
2
votes
2answers
84 views
Do I need a domain name to write Java code?
If I am sat at work I can easily write some java code - I just use my companies domain name as the package name and I do so without even thinking.
If I am sat at home and I don't have a domain name ...
2
votes
5answers
143 views
Why String class was designed this way?
Why was the String class designed in a way that instances of this class are pooled as well as immutable?
Thanks & Regards,
Vidyakar Sharma.
2
votes
5answers
111 views
What is the drawback of having more instances of enum type other than in the enum declaration?
It is a compile-time error to attempt to explicitly instantiate an enum type
(§15.9.1). The final clone method in Enum ensures that enum constants can never be cloned, and the special treatment by ...
1
vote
2answers
43 views
If you override a field in a subclass of a class, the subclass has two fields with the same name(and different type)?
I have 3 classes:
public class Alpha {
public Number number;
}
public class Beta extends Alpha {
public String number;
}
public class Gama extends Beta {
public int number;
}
Why does ...
1
vote
1answer
18 views
Is it possible to specify default value for annotation field of another annotation type?
public @interface InnerAnnotation {
String value() default "hello";
}
public @interface OuterAnnotation {
InnerAnnotation value() default ???
}
And one more case:
public @interface ...
1
vote
2answers
45 views
Why usage of prefix incrementation is considered better than postfix incrementation in standard for construction
I recently installed Checkstyle plugin for Eclipse and personally think that it is awesome. But one of the warnings it gives me is a bit obscure. The exact warning is "Using ++ is not allowed". It is ...
1
vote
1answer
57 views
Are the String lliterals stored in the string pool unique?
I understand that Strings may be interned, but it it an action that is performed religiously when a new string object is created?
Jls section 3.10.5 string literals.
1
vote
2answers
457 views
Is it a eclipse or maven-compiler-plugin bug, the generics Class cast issue?
I have a code like this:
protected <T> T doSomething(String someParam, Class<T> clazz) {
...
}
which I use in a TestCase class:
Class clazz = MyClass.class;
MyClass MyClass = ...
1
vote
1answer
93 views
Testing Initialization Safety of Final Fields
I am trying to simply test out the initialization safety of final fields as guaranteed by the JLS. It is for a paper I'm writing. However, I am unable to get it to 'fail' based on my current code. ...
1
vote
2answers
101 views
Why does Java convert byte and short operands to ints during numeric promotion
What are the reasons behind the extension of small datatypes (e.g. byte) to int during the Numeric Promotion process? Wouldn't it be possible to perform most of the operations directly on these ...
0
votes
2answers
54 views
Java shallow and deep copying JLS [closed]
Possible Duplicate:
Java pass by reference issue
In my codes below, methodA will be called, which then delegates a call to methodB, in doing so, methodB assigns the input parameter with ...
0
votes
1answer
54 views
Does Java Language Specification lay down the rules of method overriding in sub classes?
Does Java Language Specification lay down the rules of method overriding in sub classes?
Can't seem to find this in the JLS.
0
votes
2answers
94 views
What is meant by “escape sequence” in the definition of Java string literals?
From the Java Language Specification, Section 3.10.5 String Literals:
Characters may be represented by escape sequences - one escape sequence for characters in the range U+0000 to U+FFFF, two ...
0
votes
2answers
185 views
Does JVM loads all used classes when loading a particular class?
When JVM loads a class A, does it load all of the classes used within A?
And I'm wondering if import declarations are matter somehow to the loading process?
The link to JLS would be appreciated.
0
votes
0answers
74 views
Java: Weird ClassCastException in FreeTTS, gone after re-compiling
I had the FreeTTS library throwing this:
Exception in thread "main" java.lang.ClassCastException:
com.sun.speech.freetts.en.us.cmu_us_kal.KevinVoiceDirectory cannot be cast to
...
0
votes
4answers
206 views
In Java, can a method/constructor declaration appear inside another method/constructor declaration?
In Java, can a method/constructor declaration appear inside another method/constructor declaration? Example:
void A() {
int B() { }
}
I think not, but I'd love to be reassured.
0
votes
1answer
125 views
What is the relationship between the JLS, Java, and related technologies?
Java is the language, the JRE is the runtime environment, and the JDK are the development tools? The JLS is the spec that says that the JRE must do x,y,z, and therefore makes Java what it is? Are ...
0
votes
1answer
84 views
Are there any guarantees in JLS about order of execution static initialization blocks?
I wonder if it's reliable to use a construction like:
private static final Map<String, String> engMessages;
private static final Map<String, String> rusMessages;
static {
engMessages ...