The Java Language Specification is the definitive technical reference of the Java programming language.
3
votes
1answer
51 views
Erasure done differently on method signature and method?
I came across an example that suggests that erasure is done differently on the method signature and method, but I don't know why/how. The JLS §8.4.8.3 states:
It is a compile-time error if a type ...
2
votes
2answers
26 views
Where does the JLS specify that the result of an addition is int if its operands are of smaller type?
With reference to Why i am getting ype mismatch: cannot convert from int to byte, I tried a quick search in the JLS to find where is it mentioned that the result of an addition between byte operands ...
3
votes
1answer
70 views
Was there ever a “breaking change” in the Java language specification?
With the problably widely known exception of the introduction of the 'assert' keyword, has there ever been a change in the Java language specification which caused old code to be no longer compatible ...
4
votes
3answers
67 views
Why does JLS state that the largest int literal is 2147483648?
JLS 3.10.1. Integer Literals http://docs.oracle.com/javase/specs/jls/se7/html/jls-3.html#jls-3.10.1 states
The largest decimal literal of type int is 2147483648.
At the same time this line
int x ...
6
votes
2answers
65 views
Why do interfaces extend Object, according to the class file format?
Why does the JVM specification state that interfaces must have a super_class of java/lang/Object, even though interfaces do not extend java/lang/Object?
I'm specifically referring to §4.1 of the JVM ...
5
votes
2answers
85 views
What is the difference between qualified name and a field access expression?
From the JLS details on protected access:
Let C be the class in which a protected member is declared. Access is
permitted only within the body of a subclass S of C.
In addition, if Id ...
0
votes
2answers
105 views
Why in Enum hashCode() refers to the Object hashCode() implementaion, instead of ordinal() function? [duplicate]
I always thought that enum hashCode was referring to ordinal in Java, since ordinal seems to be a perfect candidate for hashCode, but it turns out it enum hashCode actually refers to default hashCode ...
4
votes
2answers
96 views
Constructor with multiple type arguments list in java grammar
The java grammar from the Java Language Specification v7 specifies the following grammar rules for constructors:
Primary:
...
new Creator
...
Creator:
NonWildcardTypeArguments ...
1
vote
1answer
34 views
What is parameterized invocation of Class
JLS, on section 9.6.1 (http://docs.oracle.com/javase/specs/jls/se7/html/jls-9.html#jls-9.6.1) says the following.
"It is a compile-time error if the return type of a method declared in an annotation ...
7
votes
5answers
115 views
Generic method invocation with <T>
I have a problem with understanding such generic method invocation:
object = ObjectGenerator.<T> getObject(objectName);
Here comes a context for above situation:
class GenClass<T> {
...
8
votes
4answers
170 views
About reference to object before object's constructor is finished
Every one of you know about this feature of JMM, that sometimes reference to object could receive value before constructor of this object is finished.
In JLS7, p. 17.5 final Field Semantics we can ...
4
votes
5answers
95 views
Return within a for loop [duplicate]
Possible Duplicate:
Why does this get error?
The 3 methods below do exactly the same thing and obviously return true.
However, the first two compile but the third one does not ("missing ...
3
votes
3answers
107 views
Strange code on Java Static Initialization Blocks
When going through the JLS 8.3.2.3 I wasn't able to understand the following code.
class Z {
static { i = j + 2; }
static int i, j;
static { j = 4; }
}
The code is resulting in the error Cannot ...
2
votes
1answer
60 views
Is there a tool to determine whether a program is “correctly synchronized” as defined in JLS?
The Java Language Specification 7 (JLS7-17.4.5) defines a "correctly synchronized" program like this: "A program is correctly synchronized if and only if all sequentially consistent executions are ...
1
vote
1answer
63 views
volatile jls example
Should the following code not throw AssertionError on windows 7 x86 jdk 7 (with -ea turned on) per JLS example for volatile?
public class TestVolatile {
static volatile int i = 0;
static volatile int ...
7
votes
1answer
86 views
Is this instruction reordering allowed by the JLS or not?
According to the Java Language Specification (Example 17.4-1) the following snippet (starting in A == B == 0)...
Thread 1 Thread 2
-------- --------
r2 = A; r1 = ...
3
votes
1answer
152 views
“variable xxx might not have been initialized” when calling static method that returns variable of the same type and the same name of the type itself
Why does it fail with the error shown below? I'm not sure where in the JLS to look for the restriction to do something like this.
public class A {
static A foo() {
return null;
}
...
7
votes
2answers
130 views
Is a write to a volatile a memory-barrier in Java
I recently heard in a talk that a write to a volatile triggers a memory-barrier for each variable that the thread has written to. Is that really correct? From the JLS, it seems that only the variable ...
16
votes
3answers
237 views
Why does returning null for a primitive work in this case?
This ugly piece of code does compile but throws NPE if s == null
public static boolean isNullOrEmpty(String s)
{
return s != null ? s.isEmpty() : null;
}
while this does not (as expected):
...
11
votes
3answers
898 views
Return value of assignment operator
Given the following class:
class Foo {
public volatile int number;
public int method1() {
int ret = number = 1;
return ret;
}
public int method2() {
int ret = number = 2;
...
1
vote
2answers
83 views
Would it be against the JLS's philosophy to compress do…while like this?
While writing another do ... while loop in Java, I started thinking about its syntax. A typical programmer will write something like
do {
somethng();
}while(booleanValue);
However, Java has a ...
9
votes
3answers
201 views
What does it mean for an expression to contain “at most one side effect, as its outermost operation”?
In Java Language Spex 15.7:
Code is usually clearer when each expression contains at most one side
effect, as its outermost operation
What does it mean?
8
votes
5answers
179 views
What parts of the JLS justify being able to throw checked exceptions as if they were unchecked?
I have recently discovered and blogged about the fact that it is possible to sneak a checked exception through the javac compiler and throw it where it mustn't be thrown. This compiles and runs in ...
4
votes
3answers
83 views
Is the JLS complete regaring method overriding and generics?
So, I was trying to write a method to answer one of my previous questions: How can I find out if an arbitrary java.lang.Method overrides another one? To do that, I was reading through the JLS, and ...
8
votes
1answer
235 views
Example for a correctly synchronized program with data races in Java memory model
In JLS, §17.4.5. Happens-before Order, it says that
A program is correctly synchronized if and only if all sequentially consistent executions are free of data races.
According to discussion in ...
1
vote
3answers
385 views
Execution order of of static blocks in an Enum type w.r.t to constructor
This is from Effective Java :
// Implementing a fromString method on an enum type
private static final Map<String, Operation> stringToEnum
= new HashMap<String, Operation>();
...
9
votes
1answer
205 views
Is a member interface in a class declaration implicitly public?
Code
I have the following class with a member interface:
package com.example.withinterface;
public class SomeClass {
interface SomeInterface {
void doSomething();
}
}
And ...
1
vote
6answers
75 views
Can some one please explain what application actually means in this hashcode() contract?
From JLS:
Whenever it is invoked on the same object more than once during an execution
of an application, the hashCode method must consistently return the
same integer, provided no information ...
1
vote
3answers
159 views
How are RuntimeExceptions not checked by compiler, even though they extend Exception class?
When we create a CustomException by extending Exception class it is checked by compiler, but even though RuntimeExceptions extend Exception class are they not checked by the compiler.
How is this ...
3
votes
3answers
111 views
How does the JLS specify that wildcards cannot be formally used within methods?
I've always been wondering about some weird aspect of Java generics and the use of wildcards. Let's say, I have the following API:
public interface X<E> {
E get();
E set(E e);
}
And ...
5
votes
1answer
1k views
Java - implementing multiple interfaces with same method and different return types
Consider the following code:
public interface A {
public A another();
}
public interface B {
public B another();
}
public interface AB extends A,B {
public AB another();
}
This leads to a ...
4
votes
4answers
236 views
Out-of-order writes for Double-checked locking
In the examples mentioned for Out-of-order writes for double-checked locking scenarios (ref:
IBM article & Wikipedia Article)
I could not understand the simple reason of why Thread1 would come of ...
1
vote
0answers
42 views
Incompatible return type for subclasses in “Requirements in Overriding and Hiding” of JLS
quoting from JLS
If a method declaration d1 with return type R1 overrides or hides the
declaration of another method d2 with return type R2, then d1 must be
return-type substitutable for d2, ...
1
vote
2answers
136 views
Which part of the Java Language Specification describes the behaviour of omitted varargs?
I am looking for a relevant portion of the Java Language Specification (JLS) which describes the behaviour when invoking a variable arity (vararg) method.
Consider the method:
public static void ...
1
vote
1answer
55 views
Are the early versions of the Java Language Specification and VM specification available online?
Oracle has the latest versions of the java specs at http://docs.oracle.com/javase/specs/ but I was unable to find the older versions. Are these archived anywhere?
2
votes
1answer
398 views
Is there a mobi version of Java Language Specification?
I'm not sure if this is the absolute best place to ask, but I think there's highest probability of an answer here (because of the topic).
Has anyone came across a mobi (Amazon Kindle) version of Java ...
7
votes
2answers
203 views
Unexpected code in synchronized block
The following Java code generates the following JVM bytecode.
I'm curious why the code from offset 31 to offset 36 is generated. Nothing in the JLS7 or JVM7 specification talks about this. Did I miss ...
3
votes
1answer
123 views
Final Fields Semantics in Threads
This is from JLS 17.5:
The usage model for final fields is a simple one. Set the final fields for an
object in that object's constructor. Do not write a reference to the object being
...
2
votes
2answers
1k 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 ...
8
votes
8answers
3k 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 ...
5
votes
2answers
67 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() & ...
1
vote
1answer
46 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
171 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 ...
2
votes
2answers
132 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 ...
1
vote
1answer
68 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.
0
votes
2answers
87 views
Java shallow and deep copying JLS [duplicate]
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
108 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
287 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 ...
2
votes
5answers
164 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.
26
votes
5answers
3k 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, ...


