The following chapters provide some performance testing
examples, revealing the most influential performance factors. Together with the
examples there are some approximate time measurement values that were achieved on
a Toshiba Sattelite Pro A120 notebook with 1Gb RAM 120GB ATA drive running on Vista. Please, note that these values are not guaranteed
and can vary considerably depending on a hardware and software used.
In most of the tests the following simple object was used:
01public class Item 02
{ 03
04
public String _name; 05
public Item _child; 06
07
public Item() 08
{ 09
10
} 11
12
public Item(String name, Item child) 13
{ 14
_name = name; 15
_child = child; 16
} 17
}
In the tests Item objects were created with 3 levels of embedded Item objects. The amount of objects was varied for different tests.
Please, be cautious to compare results of different tests presented as different configurations are used in each test.