Skip to content

Gopi Gorantala

Gopi is a software engineer with over 14 years of experience. He specializes in Java-based technology stack and has worked for various startups, the European government, and technology giants.

Members Public

Reference To An Instance method Of a Class (Method References)

In this lesson, you will learn about the third kind of method reference, "a reference to an instance method of an arbitrary object of a particular type". You will be introduced to a couple of simple examples and detailed explanations to understand this topic.

Members Public

Reference To Instance Method Of An Object (Method References)

In this lesson, you will learn about the second kind of method reference, "a reference to an instance method of an object". You will be introduced to complex object method references with example snippets and explanations.

Members Public

Reference to Static Method (Method References)

In this lesson, you will learn about the first kind of method reference, "a reference to static methods". You will be introduced to a complex object method reference with example snippets and explanations.

Members Public

Kinds Of Method References

In this lesson, you will be introduced to different kinds of method references and their syntaxes.

Members Public

What Are Method References?

In this lesson, you will learn about the method reference operator, its usage, and an example code with a detailed explanation.

Members Public

A deep dive into Java Streams API with examples

Let us deep-dive into Streams API and know how they function. Stream Phases A Java Stream is composed of 3 main phases. 1. Source 2. Intermediate operations 3. Terminal operations Source: Data is collected from a collection. We usually call it Stream source, for example: * List * Map * Set * Array, etc.

A deep dive into Java Streams API with examples
Members Public

Creating Your First Java Application With IntelliJ IDEA

Creating a Java application is easy using the IntelliJ IDEA IDE tool.

Creating Your First Java Application With IntelliJ IDEA
Members Public

How Does Streams API Work?

In this lesson, you will learn everything you need to understand what are streams. and how they actually process data.

Members Public

Java Comments

Comments are a way to write notes for our code snippets, and a way to explain how the function/class works.

Members Public

Java Primitive and Non-primitive Data Types

In this lesson, you will learn about the data types available in Java.