Skip to content
Snippets Groups Projects
Commit ca75573a authored by Tom Tromey's avatar Tom Tromey Committed by Tom Tromey
Browse files

gcj.texi (Class Initialization): Mention class initialization of arrays.

	* gcj.texi (Class Initialization): Mention class initialization of
	arrays.

From-SVN: r56386
parent f97a5bda
No related branches found
No related tags found
No related merge requests found
2002-08-16 Tom Tromey <tromey@redhat.com>
* gcj.texi (Class Initialization): Mention class initialization of
arrays.
2002-07-30 Andrew Haley <aph@cambridge.redhat.com> 2002-07-30 Andrew Haley <aph@cambridge.redhat.com>
   
* Make-lang.in (java-tree-inline.o): New. * Make-lang.in (java-tree-inline.o): New.
......
...@@ -1316,16 +1316,17 @@ programmer's responsibility to make sure classes are initialized. ...@@ -1316,16 +1316,17 @@ programmer's responsibility to make sure classes are initialized.
However, this is fairly painless because of the conventions assumed by However, this is fairly painless because of the conventions assumed by
the Java system. the Java system.
First, @code{libgcj} will make sure a class is initialized First, @code{libgcj} will make sure a class is initialized before an
before an instance of that object is created. This is one instance of that object is created. This is one of the
of the responsibilities of the @code{new} operation. This is responsibilities of the @code{new} operation. This is taken care of
taken care of both in Java code, and in C++ code. (When the G++ both in Java code, and in C++ code. When G++ sees a @code{new} of a
compiler sees a @code{new} of a Java class, it will call Java class, it will call a routine in @code{libgcj} to allocate the
a routine in @code{libgcj} to allocate the object, and that object, and that routine will take care of initializing the class.
routine will take care of initializing the class.) It follows that you can Note however that this does not happen for Java arrays; you must
access an instance field, or call an instance (non-static) allocate those using the appropriate CNI function. It follows that
method and be safe in the knowledge that the class and all you can access an instance field, or call an instance (non-static)
of its base classes have been initialized. method and be safe in the knowledge that the class and all of its base
classes have been initialized.
Invoking a static method is also safe. This is because the Invoking a static method is also safe. This is because the
Java compiler adds code to the start of a static method to make sure Java compiler adds code to the start of a static method to make sure
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment