Java and their feature

What is JAVA ?

Java is high level programming language that is used to develop web application, mobile application and desktop application.

Java was started as a project called "Oak" by James Gosling in June 1991. Gosling's goals were to implement a virtual machine and a language that had a familiar C-like notation but with greater uniformity and simplicity than C/C++. The first public implementation was Java 1.0 in 1995.

 1.Simple Java is simple because it does not support operator overloading.

     operator overloading:
                                      String con = "one" + "two";
                                       int a=10,b=20;
                                        int c=a+b
that create confusion  with + operator 

 2.Object Oriented : Java is object oriented programming language i.e deal with objects.

3.High Performance:Java is high performance due to presence of just-in-compiler. 

4.Secure:It is highly secure language due to of absence of pointer in it.

5.Architecture-Neutral:Java is architecture-neutral because it does not depends on architecture or machine.

6.Distributed: It is distributed in nature.

7. Multi-threaded: It provide muli-threading feature for executing multiple thread at once and save memory.

8.Dynamic: It is dynamic in nature.

9.Robust:It is stronger then other programming languages in term of security and extra features.

10.Portable:It is portable since it is once compiled can run on anywhere or any machine.

Comments

Popular posts from this blog

org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration': Unsatisfied dependency expressed through constructor parameter 0; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceConfiguration$Hikari.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.zaxxer.hikari.HikariDataSource]: Factory method 'dataSource' threw exception; nested exception is java.lang.IllegalStateException: Cannot load driver class: com.mysql.jdbc.Driver