Integer « Data Type « Java Tutorial

Java Tutorial
1. Language
2. Data Type
3. Operators
4. Statement Control
5. Class Definition
6. Development
7. Reflection
8. Regular Expressions
9. Collections
10. Thread
11. File
12. Generics
13. I18N
14. Swing
15. Swing Event
16. 2D Graphics
17. SWT
18. SWT 2D Graphics
19. Network
20. Database
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web Services SOA
27. EJB3
28. Spring
29. PDF
30. Email
31. J2ME
32. J2EE Application
33. XML
34. Design Pattern
35. Log
36. Security
37. Apache Common
38. Ant
39. JUnit
Java
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Tutorial » Data Type » Integer 
2. 6. Integer
2. 6. 1. Java int:int is 32 bit signed type ranges from –2,147,483,648 to 2,147,483,647.
2. 6. 2. Integer: MAX, MIN VALUE
2. 6. 3. The number of bits used to represent an int value in two's complement binary form.
2. 6. 4. Bit manipulation methods in Integer: bitCount
2. 6. 5. Highest one bit: 128
2. 6. 6. Create an Integer object
2. 6. 7. Integer.lowestOneBit(n), Integer.numberOfLeadingZeros(n), Integer.numberOfTrailingZeros(n)
2. 6. 8. Integer: rotate Left
2. 6. 9. Integer signum() returns
2. 6. 10. Integer.reverseBytes( ) reverses the order of the bytes in num and returns the result
2. 6. 11. Read Integers from console and calculate
2. 6. 12. Compare integers using if statements, relational operators and equality operators
2. 6. 13. Shifted and scaled random integers
2. 6. 14. Equals Method
2. 6. 15. Equivalence
2. 6. 16. Convert an int value to String: Integer.toString(i)
2. 6. 17. Convert an int value to String: new Integer(i).toString()
2. 6. 18. Convert a String to int
2. 6. 19. Convert an int value to String: concatenate string to an int value
2. 6. 20. Convert hexadecimal number to decimal number
2. 6. 21. Convert octal number to decimal number
2. 6. 22. Convert binary number to decimal number
2. 6. 23. Convert decimal integer to octal number
2. 6. 24. Convert decimal integer to hexadecimal number
2. 6. 25. Convert from integer to String
2. 6. 26. Convert from String to integer
2. 6. 27. Convert from decimal to binary
2. 6. 28. Convert from decimal to hexadecimal
2. 6. 29. Convert from decimal to hexadecimal with leading zeroes and uppercase
2. 6. 30. Convert from Byte array to hexadecimal string
2. 6. 31. Convert a byte array to a Hex string
2. 6. 32. Convert Decimal to Hexadecimal
2. 6. 33. Convert Decimal to Octal
2. 6. 34. Convert Decimal to Binary
2. 6. 35. Convert string to an integer or number
2. 6. 36. Parse and format a number to octal
2. 6. 37. Parse and format a number to decimal
2. 6. 38. Parse and format to hexadecimal
2. 6. 39. Parse and format to arbitrary radix <= Character.MAX_RADIX
2. 6. 40. To catch illegal number conversion, try using the try/catch mechanism.
2. 6. 41. Pass an integer by reference
2. 6. 42. Compare Two Java int Arrays
2. 6. 43. Reverse an Integer
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.