BeginnersBook

  • Home
  • Java
    • Java OOPs
    • Java Collections
    • Java Examples
  • C
    • C Examples
  • C++
    • C++ Examples
  • DBMS
  • Computer Network
  • Python
    • Python Examples
  • More…
    • jQuery
    • Kotlin
    • WordPress
    • SEO
    • JSON
    • JSP
    • JSTL
    • Servlet
    • MongoDB
    • XML
    • Perl

Java Lambda Expressions Tutorial with examples

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

Lambda expression is a new feature which is introduced in Java 8. A lambda expression is an anonymous function. A function that doesn’t have a… [Read More]

Tags: Java8-Features

Java 8 – Get Current Date and Time

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

In the past we learned how to get current date and time in Java using Date and Calendar classes. Here we will see how can… [Read More]

Tags: Java8-Features

Wrapper class in Java

Last Updated: November 8, 2022 by Chaitanya Singh | Filed Under: java

In the OOPs concepts guide, we learned that object oriented programming is all about objects. The eight primitive data types byte, short, int, long, float,… [Read More]

Deque Interface in Java Collections

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

Deque is a Queue in which you can add and remove elements from both sides. In the Java Queue tutorial we have seen that the… [Read More]

Tags: Collections

PriorityQueue Interface in Java Collections

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

In the last tutorial, we have seen how a Queue serves the requests based on FIFO(First in First out). Now the question is: What if… [Read More]

Tags: Collections

Queue Interface in Java Collections

Last Updated: November 8, 2022 by Chaitanya Singh | Filed Under: java

A Queue is designed in such a way so that the elements added to it are placed at the end of Queue and removed from… [Read More]

Tags: Collections

Comparator Interface in Java

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

In the last tutorial, we have seen how to sort objects of a custom class using Comparable interface. By using Comparable we can sort the… [Read More]

Tags: Collections

Comparable Interface in Java with example

Last Updated: May 26, 2024 by Chaitanya Singh | Filed Under: java

Comparable interface is mainly used to sort the arrays (or lists) of custom objects. Lists (and arrays) of objects that implement Comparable interface can be… [Read More]

Tags: Collections

Break statement in Java with example

Last Updated: October 25, 2022 by Chaitanya Singh | Filed Under: java

The break statement is usually used in following two scenarios: a) Use break statement to come out of the loop instantly. Whenever a break statement… [Read More]

Continue Statement in Java with example

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

Continue statement is mostly used inside loops. Whenever it is encountered inside a loop, control directly jumps to the beginning of the loop for next… [Read More]

  • « Previous Page
  • 1
  • …
  • 29
  • 30
  • 31
  • 32
  • 33
  • …
  • 65
  • Next Page »

Java Tutorial

Java Introduction

  • Java Index
  • Java Introduction
  • History of Java
  • Features of Java
  • C++ vs Java
  • JDK vs JRE vs JVM
  • JVM - Java Virtual Machine
  • First Java Program
  • Variables
  • Data Types
  • Operators

Java Flow Control

  • Java If-else
  • Java Switch-Case
  • Java For loop
  • Java while loop
  • Java do-while loop
  • Continue statement
  • break statement

Java Arrays

  • Java Arrays

OOPs Concepts

  • OOPs Concepts
  • Constructor
  • Java String
  • Static keyword
  • Inheritance
  • Types of inheritance
  • Aggregation
  • Association
  • Super Keyword
  • Method overloading
  • Method overriding
  • Overloading vs Overriding
  • Polymorphism
  • Types of polymorphism
  • Static and dynamic binding
  • Abstract class and methods
  • Interface
  • Abstract class vs interface
  • Encapsulation
  • Packages
  • Access modifiers
  • Garbage Collection
  • Inner classes
  • Static import
  • Static constructor

Java Exception Handling

  • Exception handling
  • Java try-catch
  • Java throw
  • Java throws
  • Checked and Unchecked Exceptions
  • Jav try catch finally
  • Exception Examples
  • Exception Propagation

Collections Framework

  • Collections in Java
  • Java ArrayList
  • Java LinkedList
  • Java Vector
  • Java HashSet
  • Java LinkedHashSet
  • Java TreeSet
  • Java HashMap
  • Java TreeMap
  • Java LinkedHashMap
  • Java Queue
  • Java PriorityQueue
  • Java Deque
  • Comparable interface
  • Comparator interface
  • Collections Interview Questions

MORE ...

  • Java Scanner Class
  • Java 8 Features
  • Java 9 Features
  • Java Conversion
  • Java Date
  • Java Multithreading
  • Java I/O
  • Java Serialization
  • Java Regex
  • Java AWT
  • Java Swing
  • Java Enum
  • Java Annotations
  • Java main method
  • Java Interview Q

Copyright © 2012 – 2026 BeginnersBook . Privacy Policy . Sitemap