Author name: Neeraj Mishra

James Gosling Biography – Father of Java Programming Language

James Gosling is the name that easily comes to one’s mind when we think of pioneers of programming language. Born in Canada, in May 1955, James Arthur Gosling went on to become the founder and lead designer of Java Programming Language. Education & Early Life Gosling studied at William Aberhart High School in Calgary, Alberta, […]

James Gosling Biography – Father of Java Programming Language Read More »

Basic Structure of Java Program with Example

Java is a very popular language and used on 7 billion devices worldwide. It is one of the most secured, platform-independent, and object oriented programming languages that’s why it is necessary to be familiar with the basic structure of Java program. A typical Java program consists of the following sections: Package statements Documentation Section Import

Basic Structure of Java Program with Example Read More »

3 Ways to Create Spring Boot Project in Eclipse

To create spring boot project in eclipse, we have many different ways. Spring initializer. (https://start.spring.io/) STS eclipse plugin Create a Maven project manually and add all the required dependencies for spring boot starter. Creating Spring Boot Project with Spring Initializer To create any bootstrap web application Spring Initializer is very useful and great tool. Go

3 Ways to Create Spring Boot Project in Eclipse Read More »

Why Java Doesn’t Support Operator Overloading?

Unlike C++, Java does not support operator overloading. To overload the standard arithmetic operators e.g. +, -, * and / etc, Java doesn’t provide freedom to programmers. Java does not support operator overloading because by choice of its developers where they wanted to make it a simple language. Overloading of operator allows you to do

Why Java Doesn’t Support Operator Overloading? Read More »

Solve Error insert “Dimensions” to complete ReferenceType in Java

We usually get this error in java when we are trying to pass primitive data type in the generic type declaration. The reason we get this error because generic always expects the wrapper classes but gets the primitive data type. Those who are unaware about primitive data types and wrapper classes. Wrapper Classes Wrapper classes

Solve Error insert “Dimensions” to complete ReferenceType in Java Read More »