author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Thu, 31 May 2012 15:22:36 +0300 | |
changeset 1282 | ee37f47fd026 |
parent 1270 | af6cbb1b5888 |
child 1334 | 9bf0d5a1f0cf |
permissions | -rw-r--r-- |
1213 | 1 |
.. -*- coding: utf-8; -*- |
2 |
||
3 |
================ |
|
4 |
Java language. |
|
5 |
================ |
|
6 |
||
7 |
Class version. |
|
8 |
============== |
|
9 |
||
1216 | 10 |
========= ====== ===================== |
11 |
major minor Java platform version |
|
12 |
========= ====== ===================== |
|
13 |
45 0x27 3 1.0 |
|
14 |
45 0x27 3 1.1 |
|
15 |
46 0x28 0 1.2 |
|
16 |
47 0x29 0 1.3 |
|
17 |
48 0x30 0 1.4 |
|
18 |
49 0x31 0 1.5 |
|
19 |
50 0x32 0 1.6 |
|
20 |
========= ====== ===================== |
|
1213 | 21 |
|
1216 | 22 |
where ``minor`` and ``major`` are value of 6 and 8 bytes in .class file:: |
23 |
||
24 |
0xCA, 0xFE, 0xBA, 0xBE, 0x00, minor, 0x00, major |
|
1213 | 25 |
|
26 |
Access modifiers. |
|
27 |
================= |
|
28 |
||
29 |
Public. |
|
30 |
------- |
|
31 |
||
32 |
* Public class is visible in other packages. |
|
33 |
* Public field is visible everywhere (class must be public too). |
|
34 |
||
35 |
Private. |
|
36 |
-------- |
|
37 |
||
38 |
* Private variables or methods may be used only by an instance of the same |
|
1216 | 39 |
class that declares the variable or method |
1213 | 40 |
* A private feature may only be accessed by the class that owns the feature. |
41 |
||
42 |
Protected. |
|
43 |
---------- |
|
44 |
||
45 |
* Is available to all classes in the same package and also available to all |
|
1216 | 46 |
subclasses of the class that owns the protected feature. |
1213 | 47 |
* This access is provided even to subclasses that reside in a different |
1216 | 48 |
package from the class that owns the protected feature. |
1213 | 49 |
|
50 |
default. |
|
51 |
-------- |
|
52 |
||
53 |
What you get by default ie, without any access modifier. |
|
54 |
||
55 |
* It means that it is visible to all within a particular package. |
|
56 |
||
57 |
static. |
|
58 |
------- |
|
59 |
||
60 |
* Static means one per class, not one for each object no matter how many |
|
61 |
instance of a class might exist. This means that you can use them without |
|
62 |
creating an instance of a class. |
|
63 |
* Static methods are implicitly final, because overriding is done based on |
|
64 |
the type of the object, and static methods are attached to a class, not an |
|
65 |
object. |
|
66 |
* A static method in a superclass can be shadowed by another static method in |
|
67 |
a subclass, as long as the original method was not declared final. |
|
68 |
* You can't override a static method with a nonstatic method. |
|
69 |
||
70 |
final. |
|
71 |
------ |
|
72 |
||
73 |
* A final class can't be extended ie., final class may not be subclassed. |
|
74 |
* A final method can't be overridden when its class is inherited. |
|
75 |
* You can't change value of a final variable. |
|
76 |
||
77 |
Exceptions. |
|
78 |
=========== |
|
79 |
||
80 |
A checked exception is some subclass of Exception (or Exception itself), |
|
81 |
excluding class RuntimeException and its subclasses. |
|
82 |
||
83 |
Unchecked exceptions are RuntimeException and any of its subclasses. Class |
|
84 |
Error and its subclasses also are unchecked. With an unchecked exception, |
|
85 |
however, the compiler doesn't force client programmers either to catch the |
|
86 |
exception or declare it in a throws clause. |
|
87 |
||
88 |
Inner classes. |
|
89 |
============== |
|
90 |
||
91 |
Nested top-level classes. |
|
92 |
------------------------- |
|
93 |
||
94 |
If you declare a class within a class and specify the static modifier, the |
|
95 |
compiler treats the class just like any other top-level class. |
|
96 |
||
97 |
Any class outside the declaring class accesses the nested class with the |
|
98 |
declaring class name acting similarly to a package. eg, outer.inner. Top-level |
|
99 |
inner classes implicitly have access only to static variables. There can also |
|
100 |
be inner interfaces. All of these are of the nested top-level variety. |
|
101 |
||
102 |
Member classes. |
|
103 |
--------------- |
|
104 |
||
105 |
Member inner classes are just like other member methods and member variables |
|
106 |
and access to the member class is restricted, just like methods and variables. |
|
107 |
This means a public member class acts similarly to a nested top-level class. |
|
108 |
||
109 |
The primary difference between member classes and nested top-level classes is |
|
110 |
that member classes have access to the specific instance of the enclosing |
|
111 |
class. |
|
112 |
||
113 |
Local classes. |
|
114 |
-------------- |
|
115 |
||
116 |
Local classes are like local variables, specific to a block of code. Their |
|
117 |
visibility is only within the block of their declaration. In order for the |
|
118 |
class to be useful beyond the declaration block, it would need to implement a |
|
119 |
more publicly available interface. |
|
120 |
||
121 |
Because local classes are not members, the modifiers public, protected, |
|
122 |
private, and static are not usable. |
|
123 |
||
124 |
Anonymous classes. |
|
125 |
------------------ |
|
126 |
||
127 |
Anonymous inner classes extend local inner classes one level further. As |
|
128 |
anonymous classes have no name, you cannot provide a constructor. |
|
129 |
||
130 |
64-bit problem. |
|
131 |
=============== |
|
132 |
||
133 |
http://www.java.com/en/download/faq/java_win64bit.xml |
|
134 |
Which version of Java should I download for my 64-bit Windows |
|
135 |
operating system? |
|
136 |
http://java.sun.com/javase/6/webnotes/install/system-configurations.html |
|
137 |
Java SE 6 Release Notes Supported System Configurations |
|
138 |
||
139 |
Java performance. |
|
140 |
================= |
|
141 |
||
142 |
http://java.sun.com/performance/reference/whitepapers/5.0_performance.html |
|
143 |
http://java.sun.com/performance/reference/whitepapers/6_performance.html |
|
144 |
||
145 |
Creating jar. |
|
146 |
============= |
|
147 |
:: |
|
148 |
||
149 |
$ jar cf myFile.jar *.class |
|
150 |
$ jar cmf myManifestFile myFile.jar *.class |
|
151 |
$ jar -cfe Main.jar foo.Main foo/Main.class |
|
152 |
||
1215 | 153 |
Profiling Java. |
1213 | 154 |
=============== |
155 |
:: |
|
156 |
||
157 |
$ java -Xprof com.vendor.product.Clazz |
|
1214
fe28cec0bb40
java -Xrunhprof:help
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1213
diff
changeset
|
158 |
$ java -Xrunhprof:help |
1213 | 159 |
|
1215 | 160 |
Debugging Java. |
161 |
=============== |
|
162 |
||
163 |
Compile with ``-g`` to preserve source code information:: |
|
164 |
||
165 |
$ javac -g -cp $CLASSPATH -sourcepath $SRC_DIR -d $BUILD_DIR |
|
166 |
||
167 |
To run Java program in debugger:: |
|
168 |
||
169 |
$ jdb -cp $CLASSPATH -sourcepath $SRC_DIR |
|
170 |
||
1238
53da16ba1897
-Xrunjdwp:transport
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1216
diff
changeset
|
171 |
To attach to Java application you firstly must run application with (use |
53da16ba1897
-Xrunjdwp:transport
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1216
diff
changeset
|
172 |
``dt_shmem`` for Windows and ``dt_socket`` for Linux):: |
1215 | 173 |
|
174 |
$ java -Xdebug -Xrunjdwp:transport=dt_shmem,server=y,suspend=n,address=$PORT \ |
|
175 |
com.vendor.product.Clazz |
|
176 |
||
177 |
and then attach with debugger:: |
|
178 |
||
179 |
$ jdb -attach $PORT |
|
180 |
||
1269 | 181 |
Find jar by class. |
182 |
================== |
|
183 |
||
1270
af6cbb1b5888
http://mvnrepository.com/search.html?query=PKG
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1269
diff
changeset
|
184 |
http://mvnrepository.com/search.html?query=PKG |
1269 | 185 |
http://www.jarfinder.com |
186 |