answersLogoWhite

0

What is the purpose of integer Java?

User Avatar

Anonymous

11y ago
Updated: 8/20/2019

Within Java, an integer is an Object, which is converse to the "int", which is a primitive. In reality, this means that for an integer, a method can be called upon it, whereas with a primitive, this is not the case.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

Can you do a boolean test on integer in java?

No


What is java's keyword for the integer data type?

"int" is the keyword for integer


What is the Java integer class used for?

The Java Integer class is there to help with math. It is very useful and very recommended. To learn more information about it, go to the official Java page.


Is unsigned integer available in java?

No..Java Supports Signed positive and negative integers


What is a simple java code and explain what the code does?

int a;This simple Java statement declares an integer.


What is a int in java?

int is integer which means datatype


What are the constructor method of integer class?

If you mean Java, you can get the documentation for the Integer class (with an uppercase "I") here: http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/Integer.html


How do you convert an int to object in java?

Java has auto-boxing introduced in Java 5 and converts ints to Integer objects as needed.Or you can explictly call Integer.valueOf(int) or new Integer(int) to return an Integer object with the value of the primitive int argument.Example:int i = 14; // i = 14Integer a = Integer.valueOf(i); // a = 14Integer b = new Integer(i); // b = 14or simplyInteger c = i;


How integer classified in java?

int short byte long


How do you send a data from source node to destination node using integer linear programming in java language?

java


What is the purpose of NoMatchException handling method in java?

java exception


Primitive java data types?

The primitive data types in Java are:int: integer value from -232 to 232floatdoublelong: integer value from -264 to 264byte: integer value from -128 to 128char: charactershort: integer value from -32768 to 32768boolean: true or false valueString (not actually a primitive data type)