home *** CD-ROM | disk | FTP | other *** search
/ Java Interactive Reference Guide / Java Interactive Reference Guide.iso / autorun / java.exe / java.DXR / 00186_15.txt < prev    next >
Encoding:
Text File  |  1980-01-03  |  14.2 KB  |  520 lines

  1. Glossary of Terms
  2.  
  3.  
  4.  
  5. abstract class 
  6.  
  7. A class that should never be instantiated; only its subclasses should be instantiated. Abstract classes are defined so that other classes can inherit from them. 
  8.  
  9.  
  10.  
  11. actual parameter list 
  12.  
  13. The arguments specified in a particular method call. See also formal parameter list. 
  14.  
  15.  
  16.  
  17. alpha value 
  18.  
  19. A value that indicates the opacity of a pixel.
  20.  
  21.  
  22.  
  23. API 
  24.  
  25. Application Programmer Interface. The specification of how a programmer writing an application accesses the facilities of some object. Interfaces can be specified in the Java and C++ languages using classes. The Java language also has a special interface syntax that allows interfaces that are more flexible than classes.
  26.  
  27.  
  28.  
  29. applet 
  30.  
  31. A program written in the Java language to run within HotJava.
  32.  
  33.  
  34.  
  35. argument 
  36.  
  37. A data item specified in a method call. An argument can be a literal value, a variable, or an expression.
  38.  
  39.  
  40.  
  41. array 
  42.  
  43. A collection of data items, all of the same type, in which each item's position is uniquely designated by an integer.
  44.  
  45.  
  46.  
  47. ASCII 
  48.  
  49. American Standard Code for Information Interchange. A standard assignment of 7-bit numeric codes to characters. See also Unicode.
  50.  
  51.  
  52.  
  53. atomic 
  54.  
  55. Refers to an operation that is never interrupted or left in an incomplete state under any circumstance.
  56.  
  57.  
  58.  
  59. binary operator 
  60.  
  61. An operator that has two arguments.
  62.  
  63.  
  64.  
  65. bit 
  66.  
  67. The smallest unit of information in a computer, with a value of either 0 or 1.
  68.  
  69.  
  70.  
  71. bitwise operator 
  72.  
  73. An operator that manipulates bit-oriented data, such as by performing the logical AND operation such that each bit that's 1 in either operand is 1 in the result.
  74.  
  75.  
  76.  
  77. block 
  78.  
  79. In the Java language, any code between matching braces ({ and }). 
  80.  
  81.  
  82.  
  83. boolean 
  84.  
  85. Refers to an expression or variable that can have only a true or false value. The Java language provides the boolean type and the literal values true and false.
  86.  
  87.  
  88.  
  89. bounding box 
  90.  
  91. For a Raster object, the smallest rectangle that completely encloses all the pixels that are not fully transparent.
  92.  
  93.  
  94.  
  95. byte 
  96.  
  97. A sequence of eight bits. The Java language provides a corresponding byte type.
  98.  
  99.  
  100.  
  101. bytecode 
  102.  
  103. Machine-independent code generated by the Java compiler and executed by the Java interpreter.
  104.  
  105.  
  106.  
  107. casting 
  108.  
  109. Explicit conversion from one data type to another.
  110.  
  111.  
  112.  
  113. class 
  114.  
  115. In the Java language, a type that defines the implementation of a particular kind of object. A class definition defines instance and class variables and methods, as well as specifying the interfaces the class implements and the immediate superclass of the class.
  116.  
  117.  
  118.  
  119. class method 
  120.  
  121. Any method that can be invoked using the name of a particular class. Class methods affect the class as a whole, not a particular instance of the class. Class methods are defined in class definitions. See also instance method. 
  122.  
  123.  
  124.  
  125. class variable 
  126.  
  127. A data item associated with a particular class as a whole--not with particular instances of the class. Class variables are defined in class definitions. See also instance variable. 
  128.  
  129.  
  130.  
  131. comment 
  132.  
  133. In a program, explanatory text that is ignored by the compiler. In Java programs, comments are delimited using // or /*...*/.
  134.  
  135.  
  136.  
  137. compilation unit 
  138.  
  139. The smallest unit of Java code that can be compiled. In the current Java implementation, the compilation unit is a file.
  140.  
  141.  
  142.  
  143. compiler 
  144.  
  145. A program to translate source code into code to be executed by a computer. The Java compiler translates Java source code into Java bytecode. See also interpreter.
  146.  
  147.  
  148.  
  149. compositing 
  150.  
  151. The process of superimposing one image on another to create a single image.
  152.  
  153.  
  154.  
  155. constructor 
  156.  
  157. A method that creates an object. In the Java language, constructors are instance methods with the same name as their class. Java constructors are invoked using the new keyword.
  158.  
  159.  
  160.  
  161. critical section 
  162.  
  163. A segment of code in which a thread uses resources (such as certain instance variables) that can be used by other threads, but that must not be used by them at the same time. 
  164.  
  165.  
  166.  
  167. declaration 
  168.  
  169. A statement that establishes an identifier and associates attributes with it, without necessarily reserving its storage (for data) or providing the implementation (for methods). See also definition.
  170.  
  171.  
  172.  
  173. definition 
  174.  
  175. A declaration that reserves storage (for data) or provides implementation (for methods).
  176.  
  177.  
  178.  
  179. derived from 
  180.  
  181. Describes a class that inherits properties of another class. See also subclass, superclass.
  182.  
  183.  
  184.  
  185. distributed 
  186.  
  187. Running in more than one address space.
  188.  
  189.  
  190.  
  191. double precision 
  192.  
  193. In the Java language specification, describes a floating point number that holds 64 bits of data. See also single precision.
  194.  
  195.  
  196.  
  197. encapsulation 
  198.  
  199. The localization of knowledge within a module. Because objects encapsulate data and implementation, the user of an object can view the object as a black box that provides services. Instance variables and methods can be added, deleted, or changed, but as long as the services provided by the object remain the same, code that uses the object can continue to use it without being rewritten. 
  200.  
  201.  
  202.  
  203. exception 
  204.  
  205. An event during program execution that prevents the program from continuing normally; generally, an error. The Java language supports exceptions with the try, catch, and throw keywords. See also exception handler.
  206.  
  207.  
  208.  
  209. exception handler 
  210.  
  211. A block of code that reacts to a specific type of exception. If the exception is for an error that the program can recover from, the program can resume executing after the exception handler has executed. See also exception.
  212.  
  213.  
  214.  
  215. executable content 
  216.  
  217. An application that runs from within an HTML file.
  218.  
  219.  
  220.  
  221. FTP 
  222.  
  223. The basic internet File Transfer Protocol. It enables the fetching and storing of files between hosts on the internet. It is based on TCP/IP.
  224.  
  225.  
  226.  
  227. formal parameter list 
  228.  
  229. The parameters specified in the definition of a particular method. See also actual parameter list.
  230.  
  231.  
  232.  
  233. garbage collection 
  234.  
  235. The automatic detection and freeing of memory that is no longer in use. The Java runtime system performs garbage collection so that programmers never explicitly free objects and other data.
  236.  
  237.  
  238.  
  239. GUI 
  240.  
  241. Graphical User Interface. Refers to the techniques involved in using graphics, along with a keyboard and a mouse, to provide an easy to use interface to some program.
  242.  
  243.  
  244.  
  245. hexadecimal 
  246.  
  247. The numbering system that uses 16 as its base. The marks 0-9 and a-f (or equivalently A-F) represent the digits 0 through 15. In Java programs, hexadecimal numbers must be preceded with 0x. See also octal.
  248.  
  249.  
  250.  
  251. hierarchy 
  252.  
  253. A classification of relationships in which each item except the top one (known as the root) is a specialized form of the item above it. Each item can have one or more items below it in the hierarchy. In the Java class hierarchy, the root is the Object class.
  254.  
  255.  
  256.  
  257. HTML 
  258.  
  259. HyperText Markup Language. This is a file format, based on SGML, for hypertext documents on the internet. It is very simple and allows for the imbedding of images, sounds, video streams, form fields and simple text formatting. References to other objects are imbedded using URLs.
  260.  
  261.  
  262.  
  263. HTTP 
  264.  
  265. Hypertext Transfer Protocol. This is the internet protocol used to fetch hypertext objects from remote hosts. It is based on TCP/IP.
  266.  
  267.  
  268.  
  269. identifier 
  270.  
  271. The name of an item in an Java program.
  272.  
  273.  
  274.  
  275. inheritance 
  276.  
  277. The concept of classes automatically containing the variables and methods defined in their superclasses.
  278.  
  279.  
  280.  
  281. instance 
  282.  
  283. An object of a particular class. In Java programs, an instance of a class is created using the new operator followed by the class name.
  284.  
  285.  
  286.  
  287. instance method 
  288.  
  289. Any method that can be invoked using an instance of a class, but not using the class name. Instance methods are defined in class definitions. See also class method.
  290.  
  291.  
  292.  
  293. instance variable 
  294.  
  295. Any item of data that's associated with a particular object. Each instance of a class has its own copy of the instance variables defined in the class. See also class variable. 
  296.  
  297.  
  298.  
  299. interface 
  300.  
  301. In the Java language, a group of methods that can be implemented by several classes, regardless of where the classes are in the class hierarchy. 
  302.  
  303.  
  304.  
  305. Internet 
  306.  
  307. An enormous network consisting of literally millions of hosts from many organizations and countries around the world. It is physically put together from many smaller networks and is held together by a common set of protocols.
  308.  
  309.  
  310.  
  311. IP 
  312.  
  313. Internet Protocol. The basic protocol of the internet. It enables the unreliable delivery of individual packets from one host to another. It makes no guarantees about whether or not the packet will be delivered, how long it will take, or if multiple packets will arrive in the order they were sent. Protocols built on top of this add the notions of connection and reliability.
  314.  
  315.  
  316.  
  317. interpreter 
  318.  
  319. A module that alternately decodes and executes every statement in some body of code. The Java interpreter decodes and executes Java bytecode. See also compiler, runtime system. 
  320.  
  321.  
  322.  
  323. JPEG 
  324.  
  325. Joint Photographic Experts Group. An image file compression standard established by this group. It achieves tremendous compression at the cost of introducing distortions into the image which are almost always imperceptible.
  326.  
  327.  
  328.  
  329. lexical 
  330.  
  331. Pertaining to how the characters in source code are translated into tokens that the compiler can understand. 
  332.  
  333.  
  334.  
  335. linker 
  336.  
  337. A module that builds an executable, complete program from component machine code modules. The Java linker creates a runnable program from compiled classes. See also compiler, interpreter, runtime system.
  338.  
  339.  
  340.  
  341. literal 
  342.  
  343. The basic representation of any integer, floating point, or character value. For example, 3.0 is a single-precision floating point literal, and `a' is a character literal. 
  344.  
  345.  
  346.  
  347. local variable 
  348.  
  349. A data item known within a block, but inaccessible to code outside the block. For example, any variable defined within an Java method is a local variable and can't be used outside the method.
  350.  
  351.  
  352.  
  353. method 
  354.  
  355. A function defined in a class. See also instance method, class method. 
  356.  
  357.  
  358.  
  359. Mosaic 
  360.  
  361. A program that provides a simple GUI that enables easy access to the data stored on the internet. These may be simple files, or hypertext documents. It was written by a team at NCSA. The popularity of this program has caused its name to be frequently used as a generic term to refer to browsers of the world wide web.
  362.  
  363.  
  364.  
  365. multithreaded 
  366.  
  367. Describes a program that is designed to have parts of its code execute concurrently. See also thread.
  368.  
  369.  
  370.  
  371. NCSA 
  372.  
  373. National Center for Supercomputer Applications.
  374.  
  375.  
  376.  
  377. object 
  378.  
  379. The principle building blocks of object-oriented programs. Each object is a programming unit consisting of data (instance variables) and functionality (instance methods). See also class.
  380.  
  381.  
  382.  
  383. object oriented design 
  384.  
  385. A software design method that models the characteristics of abstract or real objects using classes and objects.
  386.  
  387.  
  388.  
  389. octal 
  390.  
  391. The numbering system using 8 as its base, using the numerals 0-7 as its digits. In Java programs, octal numbers must be preceded with 0. See also hexadecimal.
  392.  
  393.  
  394.  
  395. overloading 
  396.  
  397. Using one identifier to refer to multiple items in the same scope. In the Java language, you can overload methods but not variables or operators.
  398.  
  399.  
  400.  
  401. overriding 
  402.  
  403. Providing a different implementation of a method in a subclass of the class that originally defined the method.
  404.  
  405.  
  406.  
  407. package 
  408.  
  409. In the Java language, a group of classes. Packages are declared with the package keyword. 
  410.  
  411.  
  412.  
  413. pixel 
  414.  
  415. The smallest addressable picture element on a display screen or printed page.
  416.  
  417.  
  418.  
  419. pointer 
  420.  
  421. A data element whose value is an address. 
  422.  
  423.  
  424.  
  425. POSIX 
  426.  
  427. Portable Operating System for Unix. A standard that defines the language interface between the Unix operating system and application programs through a minimal set of supported functions. 
  428.  
  429. process 
  430.  
  431. A virtual address space containing one or more threads. 
  432.  
  433.  
  434.  
  435. raster 
  436.  
  437. A line of pixels. 
  438.  
  439.  
  440.  
  441. RPC 
  442.  
  443. Remote Procedure Call. Executing what looks like a normal procedure call (or method invocation) by sending network packets to some remote host. 
  444.  
  445. root 
  446.  
  447. In a hierarchy of items, the one item from which all other items are descended. The root item has nothing above it in the hierarchy. See also hierarchy, class, package.
  448.  
  449.  
  450.  
  451. scope 
  452.  
  453. A characteristic of an identifier that determines where the identifier can be used. Most identifiers in the Java language have either class or local scope. Instance and class variables and methods have class scope; they can be used outside the class and its subclasses only by prefixing them with an instance of the class or (for class variables and methods) with the class name. All other variables are declared within methods and have local scope; they can be used only within the enclosing block.
  454.  
  455.  
  456.  
  457. single precision 
  458.  
  459. In the Java language specification, describes a floating point number with 32 bits of data. See also double precision.
  460.  
  461.  
  462.  
  463. SGML 
  464.  
  465. Standardized, Generalized Markup Language. An ISO/ANSI/ECMA standard that specifies a way to annotate text documents with information about types of sections of a document. For example "this is a paragraph" or "this is a title". 
  466.  
  467. subclass 
  468.  
  469. A class that is derived from a particular class, perhaps with one or more classes in between. See also superclass.
  470.  
  471.  
  472.  
  473. superclass 
  474.  
  475. A class from which a particular class is derived, perhaps with one or more classes in between. See also subclass.
  476.  
  477.  
  478.  
  479. thread 
  480.  
  481. The basic unit of program execution. A process can have several threads running concurrently, each performing a different job, such as waiting for events or performing a time-consuming job that the program doesn't need to complete before going on. When a thread has finished its job, the thread is suspended or destroyed. See also process.
  482.  
  483.  
  484.  
  485. TCP/IP 
  486.  
  487. Transmission Control Protocol based on IP. This is an internet protocol that provides for the reliable delivery of streams of data from one host to another.
  488.  
  489.  
  490.  
  491. TLA 
  492.  
  493. Three Letter Acronym.
  494.  
  495.  
  496.  
  497. Unicode 
  498.  
  499. A 16-bit character set defined by ISO 10646. 
  500.  
  501.  
  502.  
  503. URL 
  504.  
  505. Uniform Resource Locator. A standard for writing a textual reference to an arbitrary piece of data in the WWW. A URL looks like "protocol://host/localinfo" where protocol specifies a protocol to use to fetch the object (like HTTP or FTP), host specifies the internet name of the host on which to find it, and localinfo is a string (often a file name) passed to the protocol handler on the remote host.
  506.  
  507.  
  508.  
  509. variable 
  510.  
  511. An item of data named by an identifier. Each variable has a type, such as int or Object, and a scope. See also class variable, instance variable, local variable.
  512.  
  513.  
  514.  
  515. WWW 
  516.  
  517. World-Wide Web. The web of systems and the data in them that is the Internet.
  518.  
  519.  
  520.