Create a Default Constructor in Java

Maruthi Krishna
Updated on 05-Feb-2021 10:37:53

3K+ Views

Default constructor (No-arg constructor)A no-arg constructor doesn’t accepts any parameters, it instantiates the class variables with their respective default values (i.e. null for objects, 0.0 for float and double, false for Boolean, 0 for byte, short, int and, long).There is no need to invoke constructors explicitly these are automatically invoked at the time of instantiation.Rules to be rememberedWhile defining the constructors you should keep the following points in mind.A constructor does not have return type.The name of the constructor is same as the name of the class.A constructor cannot be abstract, final, static and Synchronized.You can use the access specifiers ... Read More

Change Repeated Row and Column Names to Sequence in a Matrix in R

Nizamuddin Siddiqui
Updated on 05-Feb-2021 10:37:08

494 Views

To change the repeated row names and column names to a sequence, we first need to read those names in a vector then set them to row names and column names with make.unique function. For example, if a matrix has row names defined as A, B, A, B, A then it can be converted into A, B, A.1, B.1, A.2.Example1 Live DemoM1

Create Parameterized Constructor in Java

Maruthi Krishna
Updated on 05-Feb-2021 10:36:13

3K+ Views

A constructor is similar to method and it is invoked at the time creating an object of the class, it is generally used to initialize the instance variables of a class. The constructors have same name as their class and, have no return type.There are two types of constructors parameterized constructors and no-arg constructors.Parameterized constructorsA parameterized constructor accepts parameters with which you can initialize the instance variables. Using parameterized constructor, you can initialize the class variables dynamically at the time of instantiating the class with distinct values.Examplepublic class StudentData {    private String name;    private int age;     ... Read More

Parametrized Constructors in Java

Maruthi Krishna
Updated on 05-Feb-2021 10:35:49

14K+ Views

A constructor is similar to method and it is invoked at the time creating an object of the class, it is generally used to initialize the instance variables of a class. The constructors have same name as their class and, have no return type.Parameterized constructorsA parameterized constructor accepts parameters with which you can initialize the instance variables. Using parameterized constructor, you can initialize the class variables dynamically at the time of instantiating the class with distinct values.Syntaxpublic class Sample{    Int i;    public sample(int i){       this.i = i;    } }ExampleLive Demopublic class Test {   ... Read More

Use of Parameterized Constructor in Java

Maruthi Krishna
Updated on 05-Feb-2021 10:31:10

496 Views

A constructor is similar to method and it is invoked at the time creating an object of the class, it is generally used to initialize the instance variables of a class. The constructors have same name as their class and, have no return type.There are two types of constructors parameterized constructors and no-arg constructors a parameterized constructor accepts parameters.The main purpose of a constructor is to initialize the instance variables of a class. Using a parameterized constructor, you can initialize the instance variables dynamically with the values specified at the time of instantiation.public class Sample{    Int i;    public ... Read More

Create Line Chart with Mean and Standard Deviation using ggplot2 in R

Nizamuddin Siddiqui
Updated on 05-Feb-2021 10:28:10

2K+ Views

Sometimes we have mean and standard deviation given for groups or factors, these are generally obtained from previous research studies and is referred to as the secondary data. In this case. the line chart with mean and standard deviation using ggplot2 can be created by defining the minimum and maximum inside geom_error function of ggplot2 package, where the difference between mean and standard deviation defines the standard deviation if the minimum is set as mean minus one standard deviation and the maximum is set as mean plus one standard deviation.ExampleConsider the below data frame − Live DemoGroup

Use Regular Expression in Java to Pattern Match

Maruthi Krishna
Updated on 05-Feb-2021 10:27:49

311 Views

A regular expression is a string of characters that defines/forms a pattern to search an input text. A regular expression may contain one or more characters, using a regular expression you can search or replace a string.Java provides the java.util.regex package for pattern matching with regular expressions. The pattern class of this package is a compiled representation of a regular expression. To match a regular expression with a String this class provides two methods namely −compile(): This method accepts a String representing a regular expression and returns an object of the Pattern object.matcher(): This method accepts a String value and creates ... Read More

Is Java Matcher Thread Safe?

Maruthi Krishna
Updated on 05-Feb-2021 10:27:28

1K+ Views

A regular expression is a special sequence of characters that helps you match or find other strings or sets of strings, using a specialized syntax held in a pattern. They can be used to search, edit, or manipulate text and data. Java provides the java.util.regex package for pattern matching with regular expressions.Matcher classA Matcher object is the engine that interprets the pattern and performs match operations against an input string. Like the Pattern class, Matcher defines no public constructors. You obtain a Matcher object by invoking the matcher() method on a Pattern object.The Instances of this class are not safe ... Read More

What is a Substring in Java

Maruthi Krishna
Updated on 05-Feb-2021 10:25:09

185 Views

The String class of the java.lang package represents set of characters. All string literals in Java programs, such as "abc", are implemented as instances of this class. A string index is an integer representing the position of each character in the string starting from zero.A substring is a part/segment of a string. You can identify a substring of a string using the substring() method of the String class. This method have two variants −substring(int beginIndex)This method accepts an integer value representing an index in the current string and returns the substring starting from the given index to the end of ... Read More

Find Mean of Multiple Columns Based on Character Column in R

Nizamuddin Siddiqui
Updated on 05-Feb-2021 10:24:29

297 Views

If we have a character column that means we are more likely to have duplicated values in that column hence finding the mean of numerical columns based on the values in character column cannot be done directly. For this purpose, we can use aggregate function as shown in the below examples.Example1Consider the below data frame − Live Demoset.seed(214) x1

Advertisements