The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
69 views

How does the JVM initiate the fields in super and sub classes?

Can any body tell why the output of following code is "null"? And what is the best way to construct a complex Object and delegate the details to their subclasses? package com.test; public class ...
5
votes
2answers
86 views

Is the Java compiler allowed to be flow sensitive for static calls?

Here's a brief example from the JLS section 8.4.8.2. class Super { static String greeting() { return "Goodnight"; } String name() { return "Richard"; } } class Sub extends Super { static ...
7
votes
2answers
415 views

What does “qualified this” " construct mean in java ?

In Effective Java inside the item "Item 22: Favor static member classes over nonstatic" Josh Bloch says "Each instance of a nonstatic member class is implicitly associated with an enclosing ...
2
votes
1answer
62 views

How should I approach adding a feature to the Java language? [closed]

I've seen a few neat features in other languages around Java like generators and the recent "await" feature, and I tried to implement some of them using bytecode manipulation. However, I think these ...
9
votes
3answers
212 views

Why do try/catch or synchronized in Java require a statement block? [closed]

Java allows for certain keywords to be followed by a statement or a statement block. For example: if (true) System.out.println("true"); do System.out.println("true"); while (true); ...
40
votes
3answers
2k views

Case sensitivity of Java class names

If one writes two public Java classes with the same case-insensitive name in different directories then both classes are not usable at runtime. (I tested this on Windows, Mac and Linux with several ...
1
vote
1answer
351 views

Why does Java allow “public static final” in nested classes for simple types and not arrays? [duplicate]

Possible Duplicate: Cannot declare Public static final String s = new String(“123”) inside an inner class In the following example, why are CONST_ONE, CONST_TWO allowed, but ...
4
votes
2answers
918 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
513 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 { ...
0
votes
1answer
30 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 ...
32
votes
8answers
5k views

How to create expressions of type Class<List<?>>

Take the following: public Class<List<String>> getObjectType() { // what can I return here? } What class literal expression can I return from this method which will satisfy the ...
3
votes
2answers
524 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). ...
7
votes
4answers
1k views

Why does Eclipse compile this, but javac doesn't?

We have some unit tests which compile and run fine in Eclipse 3.4, but when we try to compile them using javac, it fails. I've managed to cut the code down to something small and self-contained, so it ...
7
votes
6answers
6k 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 ...
42
votes
13answers
16k views

Why no static methods in Interfaces, but static fields and inner classes OK?

There have been a few questions asked here about why you can't define static methods within interfaces, but none of them address a basic inconsistency: why can you define static fields and static ...