Pad a String with Spaces inJava
Since Java 1.5 we can use the
method java.lang.String.format(String
, object) and use printf like format.
The
format string "%1$15s" will
do the job. Where 1$ indicates the
argument index, s indicates that
the argument is a String 15 represent the
minimal...
Pad a String with Spaces in Java
Ashok Veer | June 12, 2020 |
Pad a String with Spaces in Java
Be the first to comment!
read more...
Java 8 Default and static methods in Interfaces
Ashok Veer | May 22, 2020 |
Default and static methods in interface
|
Java 8 Default and static methods
Be the first to comment!
Java 8 Default
and static methods in Interfaces
Java
8 is come up with really good features likes Funtional interface, Lambda
expression, Stream, static and default method in interface etc.
Before
java 8 an interface in java can contain only abstract method so now java 8
allow having default and static methods.
Default methods...
Inner classes in java
Inner classes in java
In
java inner class which is defined inside another class is called nested class
or non-static inner class. For instantiating the inner class or nested class object we first need to
create the outer class object. We can access outer class member’s
variables insides of inner class just like normal members...
Static inner class in java
Ashok Veer | May 21, 2020 |
Static inner class in java
Be the first to comment!
Static inner class in java
In
java a static class which is defined inside another outer class is called
static nested class or static inner class. A static inner class is nested class which can be accessed without
creating the object of the outer class. We can access like static
other static members of class.
A
static inner...
Functional Interfaces
Ashok Veer | May 18, 2020 |
Functional Interfaces
|
java 8 functional interface tutorial
Be the first to comment!
Functional Interfaces
A functional Interface concept introduced in java 8 with some amazing
features. So let’s check it out properties and example.
Functional interface in java is an interface which contains only a single abstract method and can
contain any number of default and static
methods which do have an implementation....
Java 8 features with examples
Ashok Veer | May 17, 2020 |
Java 8 features with examples
Be the first to comment!

Java 8 features with examples
java 8 features techfloaters
Java
8 is long term support (LTS) release in 18 March 2014, in this article I
will summarizes the features and enhancements in Java SE 8. There are many
packages and symbols...
Hashtable in java
Ashok Veer | May 15, 2020 |
example of Hashtable
|
Features in Hashtable in java
|
Hashtable in java
Be the first to comment!
Hashtable in java
Java Hashtable
class is available since jdk1.0 which is oldest class in java present in
java.util package. Java Hashtable
internally contains buckets where the key/value pairs are stored in buckets.
A Hashtable
class is an array of a list structure. Each list is known as a bucket. The
position of the bucket...
Best Way to Iterate Any Map in java
Ashok Veer | May 10, 2020 |
Best Way to Iterate Any Map in java
|
best way to iterate hashmap in java
|
iterate hashmap java 8
Be the first to comment!

Best Way to Iterate Any Map
in java
Best way to iterate map in java- techfloaters
Iterating over Map in java there are basically 4 different ways in
this article we will look each and every one by one with example. Also we will
use Java 8 forEach()...
Treemap vs Hashmap
Ashok Veer | May 09, 2020 |
Difference between HashMap and TreeMap
|
HashMap vs TreeMap
Be the first to comment!
Treemap vs Hashmap
In this topics we are discussing the very interesting topics
about difference between
HashMap and TreeMap. Basically both directly or indirectly implements
Map interface so some of the functionality is common in both. Still there is
some major differences based upon that we can use any one of them in...
TreeMap in java
Ashok Veer | May 09, 2020 |
Example of TreeMap
|
Features of TreeMap
|
TreeMap in Java
Be the first to comment!
TreeMap in java
The TreeMap
is sorted according to the natural ordering of its keys, or by
a Comparator provided at map creation
time, depending on which constructor is used.
Java TreeMap
is a part of collection since jdk 1.2 versions and available in java.util
package. TreeMap implements the Map interface...
Subscribe to:
Posts (Atom)