Java - Methods
Categories: Java 8(JDK1.8) ||
A Java method is a collection of statements that are grouped together to perform an operation. When you call the System.out.println() method, for example, the system actually executes several statemen
Categories: Java 8(JDK1.8) ||
A Java method is a collection of statements that are grouped together to perform an operation. When you call the System.out.println() method, for example, the system actually executes several statemen
Categories: Java 8(JDK1.8) ||
Java provides the java.util.regex package for pattern matching with regular expressions. Java regular expressions are very similar to the Perl programming language and very easy to learn.A regular exp
Categories: Java 8(JDK1.8) ||
GregorianCalendar is a concrete implementation of a Calendar class that implements the normal Gregorian calendar with which you are familiar. We did not discuss Calendar class in this tutorial, you ca
Categories: Java 8(JDK1.8) ||
You can sleep for any period of time from one millisecond up to the lifetime of your computer. For example, the following program would sleep for 3 seconds.Exampleimport java.util.*;public class Sleep
Categories: Java 8(JDK1.8) ||
To specify the time format, use a time pattern string. In this pattern, all ASCII letters are reserved as pattern letters, which are defined as the following −CharacterDescriptionExampleGEra designa
Categories: Java 8(JDK1.8) ||
Following are the three ways to compare two dates −You can use getTime( ) to obtain the number of milliseconds that have elapsed since midnight, January 1, 1970, for both objects and then compare th
Categories: Java 8(JDK1.8) ||
This is a very easy method to get current date and time in Java. You can use a simple Date object with toString() method to print the current date and time as follows −Exampleimport java.util.Date;p
Categories: Java 8(JDK1.8) ||
Java provides the Date class available in java.util package, this class encapsulates the current date and time.The Date class supports two constructors as shown in the following table.Sr.No.Constructo
Categories: Java 8(JDK1.8) ||
You can create an array by using the new operator with the following syntax −SyntaxarrayRefVar = new dataType[arraySize];The above statement does two things −It creates an array using new dataType
Categories: Java 8(JDK1.8) ||
Java provides a data structure, the array, which stores a fixed-size sequential collection of elements of the same type. An array is used to store a collection of data, but it is often more useful to
Categories: Java 8(JDK1.8) ||
You have printf() and format() methods to print output with formatted numbers. The String class has an equivalent class method, format(), that returns a String object rather than a PrintStream object.
Categories: Java 8(JDK1.8) ||
The String class includes a method for concatenating two strings −string1.concat(string2);This returns a new string that is string1 with string2 added to it at the end. You can also use the concat()
Categories: Java 8(JDK1.8) ||
Methods used to obtain information about an object are known as accessor methods. One accessor method that you can use with strings is the length() method, which returns the number of characters conta
Categories: Java 8(JDK1.8) ||
Strings, which are widely used in Java programming, are a sequence of characters. In Java programming language, strings are treated as objects.The Java platform provides the String class to create and
Categories: Java 8(JDK1.8) ||
Following is the list of the important instance methods that all the subclasses of the Character class implement −Sr.No. - Method & Description1.isLetter() - Determines whether the specified cha
Categories: Java 8(JDK1.8) ||
A character preceded by a backslash (\) is an escape sequence and has a special meaning to the compiler.The newline character (\n) has been used frequently in this tutorial in System.out.println() sta
Categories: Java 8(JDK1.8) ||
Normally, when we work with characters, we use primitive data types char.Examplechar ch = 'a';// Unicode for uppercase Greek omega characterchar uniChar = '\u039A'; // an array of charschar[] cha
Categories: Java 8(JDK1.8) ||
Normally, when we work with Numbers, we use primitive data types such as byte, int, long, double, etc.Exampleint i = 5000;float gpa = 13.65f;double mask = 125;However, in development, we come across s
Categories: Java 8(JDK1.8) ||
Decision making structures have one or more conditions to be evaluated or tested by the program, along with a statement or statements that are to be executed if the condition is determined to be true,
Categories: Node JS ||
What’s New in Node v16? let's know Introduction The latest major release Node v16.0.0 is out recently, and this version will soon be moved to the LTS status. The official Node doc
Categories: Interview questions and answers || Experienced || Node JS ||
Node.js Interview Question for experienced 2022 Question: What is Node.js? Answer: Node.js is a very popular scripting language that is primarily used for server-side scripting requirem
Categories: Java 8(JDK1.8) ||
There may be a situation when you need to execute a block of code several number of times. In general, statements are executed sequentially: The first statement in a function is executed first, follow
Categories: Java 8(JDK1.8) ||
Operator precedence determines the grouping of terms in an expression. This affects how an expression is evaluated. Certain operators have higher precedence than others; for example, the multiplicatio
Categories: Java 8(JDK1.8) ||
There are few other operators supported by Java Language.Conditional Operator ( ? : )Conditional operator is also known as the ternary operator. This operator consists of three operands and is used to
Categories: Java 8(JDK1.8) ||
Following are the assignment operators supported by Java language −OperatorDescriptionExample=Simple assignment operator. Assigns values from right side operands to left side operand.C = A + B will
Categories: Java 8(JDK1.8) ||
The following table lists the logical operators −Assume Boolean variables A holds true and variable B holds false, then −OperatorDescriptionExample&& (logical and)Called Logical AND operat
Categories: Java 8(JDK1.8) ||
Java defines several bitwise operators, which can be applied to the integer types, long, int, short, char, and byte.OperatorDescriptionExample& (bitwise and)Binary AND Operator copies a bit to the
Categories: Java 8(JDK1.8) ||
There are following relational operators supported by Java language.Assume variable A holds 10 and variable B holds 20, then −Operator - Description -Example== (equal to)Checks if the values of two
Categories: Java 8(JDK1.8) ||
Java provides a rich set of operators to manipulate variables. We can divide all the Java operators into the following groups −1. Arithmetic Operators2. Relational Operators3. Bitwise Operators4. Lo
Categories: Java 8(JDK1.8) ||
Modifiers are keywords that you add to those definitions to change their meanings. Java language has a wide variety of modifiers, including the following −1. Java Access Modifiers2. Non Access Modif
Categories: Java 8(JDK1.8) ||
Variables are nothing but reserved memory locations to store values. This means that when you create a variable you reserve some space in the memory.Based on the data type of a variable, the operating
Categories: Java 8(JDK1.8) ||
As the name specifies the no argument constructors of Java does not accept any parameters instead, using these constructors the instance variables of a method will be initialized with fixed values for
Categories: Java 8(JDK1.8) ||
A constructor initializes an object when it is created. It has the same name as its class and is syntactically similar to a method. However, constructors have no explicit return type.Typically, you wi
Categories: Java 8(JDK1.8) ||
In simple words, it is a way of categorizing the classes and interfaces. When developing applications in Java, hundreds of classes and interfaces will be written, therefore categorizing these classes
Categories: Java 8(JDK1.8) ||
As the last part of this section, let's now look into the source file declaration rules. These rules are essential when declaring classes, import statements and package statements in a source file.The
Categories: Java 8(JDK1.8) ||
A class can contain any of the following variable types.Local variables − Variables defined inside methods, constructors or blocks are called local variables. The variable will be declared and initi
Categories: Java 8(JDK1.8) ||
Java is an Object-Oriented Language. As a language that has the Object-Oriented feature, Java supports the following fundamental concepts −1. Polymorphism2. Inheritance3. Encapsulation4. Abstraction
Categories: Java 8(JDK1.8) ||
In Java, classes can be derived from classes. Basically, if you need to create a new class and here is already a class that has some of the code you require, then it is possible to derive your new cla
Categories: Java 8(JDK1.8) ||
Like other languages, it is possible to modify classes, methods, etc., by using modifiers. There are two categories of modifiers −Access Modifiers − default, public , protected, privateNon-access
Categories: Java 8(JDK1.8) ||
All Java components require names. Names used for classes, variables, and methods are called identifiers.In Java, there are several points to remember about identifiers. They are as follows −All ide
Categories: Java 8(JDK1.8) ||
When we consider a Java program, it can be defined as a collection of objects that communicate via invoking each other's methods. Let us now briefly look into what do class, object, methods, and insta
Categories: Java 8(JDK1.8) ||
To write your Java programs, you will need a text editor. There are even more sophisticated IDEs available in the market. But for now, you can consider one of the following −Notepad − On Windows m
Categories: Java 8(JDK1.8) ||
Local Environment SetupIf you are still willing to set up your environment for Java programming language, then this section guides you on how to download and set up Java on your machine. Following are
Categories: Java 8(JDK1.8) ||
For performing the examples discussed in this tutorial, you will need a Pentium 200-MHz computer with a minimum of 64 MB of RAM (128 MB of RAM recommended).You will also need the following softwares â
Categories: Java 8(JDK1.8) ||
James Gosling initiated Java language project in June 1991 for use in one of his many set-top box projects. The language, initially called ‘Oak’ after an oak tree that stood outside Gosling's offi
Categories: Java 8(JDK1.8) ||
Java programming language was originally developed by Sun Microsystems which was initiated by James Gosling and released in 1995 as core component of Sun Microsystems' Java platform (Java 1.0 [J2SE]).
Categories: Java 8(JDK1.8) ||
The latest release of the Java Standard Edition is Java SE 8. With the advancement of Java and its widespread popularity, multiple configurations were built to suit various types of platforms. For exa
Categories: Java 8(JDK1.8) ||
Just to give you a little excitement about Java programming, I'm going to give you a small conventional C Programming Hello World program, You can try it using Demo link.public class MyFirstJavaProgra
Categories: Java 9 ||
Java is a MUST for students and working professionals to become a great Software Engineer specially when they are working in Software Development Domain. I will list down some of the key advantages of
Categories: Java 8(JDK1.8) ||
Java is a high-level programming language originally developed by Sun Microsystems and released in 1995. Java runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX.