Thursday, 29 October 2020
Java Buzzwords
Features of Java
The multiplatformed environment of the Web place extraordinary demands on a program , because the program must execute reliably in a variety of systems . Thus , the ability to create robust programs was given a high priority in the design of java . To gain reliability ,Java restricts we in a few key areas to force we find our mistakes early in program development .
Java is designed for the distributed environment of the internet because it handle TCP/IP protocols. In fact , accessing a resource using a URL is not much different from accessing a file . Java also supports Remote Method Invocation (RMI) .This feature enables a program to invoke methods across a network .
Java programs carry with them substantial amounts of run - time type information that is used to verify and resolve accesses to objects at run time . This make it possible to dynamically link code in a safe and expedient manner . This is crucial to the robustness of the java environment , in which small fragments of bytecode may be dynamically updated on a running system .
Subscribe to:
Post Comments (Atom)
Student Marks Calculation app using java
import javax.swing. *; import java.awt.event.ActionEvent ; import java.awt.event.ActionListener ; public class Student { private J...
-
The Type Promotion Rules :- Java defines several type promotion rules that apply to expressions. They are as follows : all byt...
-
Java Environment Java environment includes a number of development tools , classes and methods. The development tools are part ...
-
JAVA program to input and print n number using array :- PROGRAM :- import java.io.*; class Clsarray { public static void main(St...
Thank you 💖
ReplyDelete