Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Some classes in the standard Java API are treated slightly different from other classes. I'm talking about those classes that couldn't be implemented without special support from the compiler and/or JVM.

The ones I come up with right away are:

  • Object (obviously) as it, among other things doesn't have a super class.
  • String as the language has special support for the + operator.
  • Thread since it has this magical start() method despite the fact that there is no bytecode instruction that "forks" the execution.

I suppose all classes like these are in one way or another mentioned in the JLS. Correct me if I'm wrong.

Anyway, what other such classes exist? Is there any complete list of "glorified classes" in the Java language?

share|improve this question
2  
Generics almost fit, but not quite. They're implemented using a compiler trick, but they're not isolated to one class. – Bill the Lizard Aug 11 '10 at 13:01
1  
They are all reverence types. ;-) – starblue Aug 13 '10 at 7:00
1  
Is "thread.start" magical? Surely it's just some native code called to do this? – jcoder Aug 13 '10 at 11:34
That thought has struck me too. Perhaps the JNI alone is sufficient to implement the Thread class. I suppose if I would try to do this, I would use some OS-level thread api, fork the execution in the implementation of the start() method, execute the run() method in the forked thread, and return. But then my OS thread would keep running. Would that run smoothly along with the threads created by the JVM? and honor the JLS memory model and so on? – aioobe Aug 13 '10 at 11:57
1  
According to the spec, the only way to create a thread is from the Thread class (java.sun.com/docs/books/jvms/second_edition/html/…;. Of course, it relies on some naitive level communication with the JVM, but if you did your own JNI, you might start a thread, but you wouldn't get the JVM to understand what you are doing (locks, memory model, etc.). Thread is privileged in that the spec assigns it a special privilege - the sole way to start a thread. – Yishai Aug 13 '10 at 16:19

14 Answers

There are a lot of different answers, so I thought it would be useful to collect them all (and add some):

Classes

  • AutoBoxing classes - the compiler only allows for specific classes
  • Class - has its own literals (int.class for instance). I would also add its generic typing without creating new instances.
  • String - with it's overloaded +-operator and the support of literals
  • Enum - the only class that can be used in a switch statement (soon a privilege to be given to String as well). It does other things as well (automatic static method creation, serialization handling, etc.), but those could theoretically be accomplished with code - it is just a lot of boilerplate, and some of the constraints could not be enforced in subclasses (e.g. the special subclassing rules) but what you could never accomplish without the priviledged status of an enum is include it in a switch statement.
  • Object - the root of all objects (and I would add its clone and finalize methods are not something you could implement)
  • References: WeakReference, SoftReference, PhantomReference
  • Thread - the language doesn't give you a specific instruction to start a thread, rather it magically applies it to the start() method.
  • Throwable - the root of all classes that can work with throw, throws and catch, as well as the compiler understanding of Exception vs. RuntimeException and Error.
  • NullPointerException and other exceptions such as ArrayIndexOutOfBounds which can be thrown by other bytecode instructions than athrow.

Interfaces

  • Iterable - the only interface that can be used in an enhanced for loop

Honorable mentions goes to:

  • java.lang.reflect.Array - creating a new array as defined by a Class object would not be possible.
  • Annotations They are a special language feature that behaves like an interface at runtime. You certainly couldn't define another Annotation interface, just like you can't define a replacement for Object. However, you could implement all of their functionality and just have another way to retrieve them (and a whole bunch of boilerplate) rather than reflection. In fact, there were many XML based and javadoc tag based implementations before annotations were introduced.
  • ClassLoader - it certainly has a privileged relationship with the JVM as there is no language way to load a class, although there is a bytecode way, so it is like Array in that way. It also has the special privilege of being called back by the JVM, although that is an implementation detail.
  • Serializable - you could implement the functionality via reflection, but it has its own privileged keyword and you would spend a lot of time getting intimate with the SecurityManager in some scenarios.

Note: I left out of the list things that provide JNI (such as IO) because you could always implement your own JNI call if you were so inclined. However, native calls that interact with the JVM in privileged ways are different.

Arrays are debatable - they inherit Object, have an understood hierarchy (Object[] is a supertype of String[]), but they are a language feature, not a defined class on its own.

share|improve this answer
Annotations were often done with doc comments. – Donal Fellows Aug 13 '10 at 11:42
@Donal, very true, I was thinking of runtime annotation, but source level annotations were indeed done that way (xdoclet most notibly, or even in core java with @deprecated) – Yishai Aug 13 '10 at 15:57
I've just been fighting my way through a thicket of code that was originally written with xdoclet processing and then converted to annotations. Oh, how I prefer annotations to that (even though, with suitable maven incantations, the net effect is the same). – Donal Fellows Aug 14 '10 at 15:50
@Donal, I certainly agree ;) – Yishai Aug 16 '10 at 20:47
Where is Collections ???????? – KK_07k11A0585 Apr 3 '12 at 16:20
show 7 more comments

Class, of course. It has its own literals (a distinction it shares with String, BTW) and is the starting point of all that reflection magic.

share|improve this answer
Ah, good point. So what's an example of a class literal? Are you referring to MyClass.class? – aioobe Aug 11 '10 at 12:48
3  
@aioobe: exactly. Note that you also have int.class, char.class, etc. – Michael Borgwardt Aug 11 '10 at 13:19
  1. Enum. You're not allowed to subclass it, but the compiler can.
  2. Many things under java.util.concurrent can be implemented without JVM support, but they would be a lot less efficient.
share|improve this answer
1  
You can anonymously subclass enums (which is the base of the visitor pattern impl. for enums values). But yes, you cannot fully subclass an enum ;-) – Thierry Aug 11 '10 at 14:25

All of the Number classes have a little bit of magic in the form of Autoboxing.

share|improve this answer
You mean the classes that wrap primitives - which also includes Boolean and Character; but excludes BigInteger. – emory Aug 11 '10 at 14:56
1  
@emory: Right, just the primitive wrapper classes. Unfortunately that does exclude BigInteger. – Bill the Lizard Aug 11 '10 at 15:01

sun.misc.unsafe is the mother of all dirty, spirit-of-the-language-breaking hacks.

share|improve this answer

Since the important classes were mentioned, I'll mention some interfaces:

The Iterable interface (since 1.5) - it allows an object to participate in a foreach loop:

Iterable<Foo> iterable = ...;
for (Foo foo : iterable) {

}

The Serializable interface has a very special meaning, different from a standard interface. You can define methods that will be taken into account even though they are not defined in the interface (like readResolve()). The transient keyword is the language element that affects the behaviour of Serializable implementors.

share|improve this answer
True, They are interfaces though, so they require no "special" implementation per see. (Similar to Throwable.) – aioobe Aug 11 '10 at 12:57
Serializable actually does require special implementation. It's an interface that you're expected to have two methods (I forget the names... I could google it...) but they aren't required or defined in the standard interface scheme. – corsiKa Aug 11 '10 at 13:03
@glowcoder: however, once could argue that all the specialness of Serializable is not relevant to the Java language, only to the implementation of ObjectOutputStream and ObjectInputStream. – Michael Borgwardt Aug 11 '10 at 13:21
5  
@Michael Borgwardt it has - the transient keyword – Bozho Aug 11 '10 at 13:23
1  
I don't think so - Comparable doesn't take part in anything internal. You could easily write NewComparable and new NewArrays.sort(..) with the same functionality – Bozho Aug 11 '10 at 13:59
show 5 more comments
  1. Throwable, RuntimeException, Error AssertionError
  2. References WeakReference, SoftReference, PhantomReference
  3. Enum
  4. Annotation
share|improve this answer
Nice list. +1, Annotation is an interface though, and has no implementation. – aioobe Aug 11 '10 at 13:23
Annotations are treated differently by the compiler than normal interfaces. Similar to enum they all extend Annotation, and the compiler does that automagically. From the JavaDoc of Annotation: The common interface extended by all annotation types. Note that an interface that manually extends this one does not define an annotation type. Also note that this interface does not itself define an annotation type. So you can't create an annotation using normal syntax, they needed to change the compiler to add them. – Andrei Fierbinteanu Aug 11 '10 at 14:21

Java array as in int[].class

share|improve this answer
Ah, good one! the [I class ;) it's not an API class though. – aioobe Aug 11 '10 at 13:54

java.lang.ClassLoader, though the actual dirty work is done by some unmentioned subclass (see 12.2.1 The Loading Process).

share|improve this answer

Not sure about this. But I cannot think of a way to manually implement IO objects.

share|improve this answer
You're right, they can't be implemented in pure Java. They need to be implemented through JNI (just as any other class that needs to do system calls). Apart from that however, they need no special support from compiler or jvm. – aioobe Aug 12 '10 at 6:19

There is some magic in the System class.

System.arraycopy is a hook into native code

public static native void arraycopy(Object array1, int start1, 
  Object array2, int start2, int length);

but...

/**
 * Private version of the arraycopy method used by the jit
 * for reference arraycopies
 */
private static void arraycopy(Object[] A1, int offset1,
  Object[] A2, int offset2, int length) {
   ...
}
share|improve this answer
Heys what do you mean by your second part of the answer? – Pacerier Nov 19 '11 at 22:13

Well since the special handling of assert has been mentioned. Here are some more Exception types which have special treatment by the jvm:

  • NullPointerException
  • ArithmeticException.
  • StackOverflowException
  • All kinds of OutOfMemoryErrors
  • ...

The exceptions are not special, but the jvm uses them in special cases, so you can't implement them yourself without writing your own jvm. I'm sure that there are more special exceptions around.

share|improve this answer

class java.lang.Void

share|improve this answer
3  
I don't see how this class is special to the JVM/compiler. It's implemented with five lines pure old Java code. – aioobe Aug 13 '10 at 16:20

Most of those classes isn't really implemented with 'special' help from the compiler or JVM. Object does register some natives which poke around the internal JVM structures, but you can do that for your own classes as well. (I admit this is subject to semantics, "calls a native defined in the JVM" can be considered as special JVM support.)

What /is/ special is the behaviour of the 'new', and 'throw' instructions in how they initialise these internal structures.

Annotations and numbers are pretty much all-out freaky though.

share|improve this answer
3  
aioobe refers to classes you can not implement yourself, as they have special build in support. You cannot create your own Object class as root of the type system without inheriting form java.lang.Object. Object has special support from both the compiler and the jvm to make sure it is a root class. Native calls are not enough to get around this. – josefx Aug 11 '10 at 18:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.