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 Integer parseInt()Method

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

Java Integer parseInt() method returns int value after parsing the given string using the specified radix. If radix is not provided, then it uses 10… [Read More]

Tags: Integer

Java Integer numberOfTrailingZeros() Method

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

The numberOfTrailingZeros() method of Integer class, returns number of zero-bits after the last one-bit in the binary representation of the given int number. Returns 32… [Read More]

Tags: Integer

Java Integer numberOfLeadingZeros() Method

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

The numberOfLeadingZeros() method of Integer class, returns number of 0’s bits before the first one-bit in the binary representation of the given int number. If… [Read More]

Tags: Integer

Java Integer longValue() Method

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

The longValue() method of Integer class, returns the value represented by this Integer object as long. Since the size of long is greater than the… [Read More]

Tags: Integer

Java Integer intValue() Method

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

The intValue() method of Integer class returns the value of this Integer object as int. You can use this method for Integer to int conversion…. [Read More]

Tags: Integer

Java Integer min() Method

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

The min() method of Integer class, returns smaller of two int numbers passed as arguments to this method. It works similar to Math.min() method. Hierarchy:… [Read More]

Tags: Integer

Java Integer max() Method

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

The max() method returns greater of two int numbers passed as arguments to this method. It works similar to Math.max() method. Hierarchy: java.lang Package ->… [Read More]

Tags: Integer

Java Integer lowestOneBit() Method

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

The lowestOneBit() method of Integer class, returns an int value with a single one bit in the position of the lowest order. This is determined… [Read More]

Tags: Integer

Java Integer highestOneBit() Method

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

The highestOneBit() method of Integer class, returns an int value with a single one bit in the position of the highest order. This is determined… [Read More]

Tags: Integer

Java Integer hashCode() Method

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

The hashCode() method returns a hash code for the given integer value. Syntax of hashCode() method The following variation of hashCode() method does not accept… [Read More]

Tags: Integer

Java Integer getInteger() Method

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

The getInteger() method of Integer class, returns the integer value of the system property with the specified property name. Hierarchy: java.lang Package -> Integer Class… [Read More]

Tags: Integer

Java Integer floatValue() Method

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

Java Integer floatValue() method returns the value of this Integer object as float after performing widening primitive conversion (Integer -> float). Hierarchy: java.lang Package ->… [Read More]

Tags: Integer

Java Integer equals() Method

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

Java Integer equals(Object obj) method compares this Integer object to the given object obj. It returns true if both the objects contain same int value… [Read More]

Tags: Integer

Java Integer doubleValue() Method

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

The doubleValue() method returns the value of this Integer as double after performing widening primitive conversion. Hierarchy: java.lang Package -> Integer Class -> doubleValue() Method… [Read More]

Tags: Integer

Java Integer divideUnsigned() Method

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

The divideUnsigned() method returns the unsigned quotient after dividing first argument by second argument. Syntax of divideUnsigned() method public static int divideUnsigned(int dividend, int divisor)… [Read More]

Tags: Integer

  • 1
  • 2
  • 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 – 2025 BeginnersBook . Privacy Policy . Sitemap