Entries tagged as J2SE
What is native?
What is native? Native is a Java keyword that is used in method declarations to specify that the method is not implemented in the same Java source file, but rather in another language. Read More...
What is multithreaded?
What is multithreaded? Describes a program that is designed to have parts of its code execute concurrently. Read More...
What is method?
What is method? A function defined in a class. See also instance method, class method. Unless specified otherwise, a method is not static. Read More...
What is member?
What is member? A field or method of a class. Unless specified otherwise, a member is not static. Read More...