CodeGym University
Java FullStack
Learning
Courses
Tasks
Surveys & Quizzes
Games
Help
Schedule
Community
Users
Forum
Chat
Articles
Success stories
Activity
Reviews
Subscriptions
Light theme
Group
Reviews
About us
Start
Start learning
Start learning now
Articles
Authors
All groups
All Articles List
CodeGym
/
Java Blog
/
Java Types
Java Types
109 members
Leaderboard
Popular
New
Old
Oleksandr Miadelets
Java Types
August 19, 2023 at 9:57 AM
Convert Char to Int in Java with examples
Pretty often symbolic information that users enter from the keyboard needs to be converted to numbers or a programmer should get numbers from it. There are some methods in Java to do it...
Pavlo Plynko
Java Types
July 26, 2022 at 10:47 AM
Java Boolean
The word “boolean” in the context of Java language can be used in different, albeit very related, meanings. It could be: boolean primitive type or boolean variable of this type...
Pavlo Plynko
Java Types
April 9, 2025 at 3:08 PM
Java Variables
In this article, we are going to explain to all Java learners what Java variables are and how to work with them. A variable in Java can be thought of as a box. This "box" has a certain size...
Milan Vucic
Java Types
April 24, 2025 at 11:26 AM
Char Data Type in Java
The char data type in Java is a primitive type that holds a single character, like a letter, digit, or symbol. It's stored in 16 bits (2 bytes), unlike some languages that use 8 bits, giving it room for 65,536 possible values
Artem Divertitto
Java Types
April 21, 2025 at 8:51 AM
Java Type Casting
What is Type Casting in Java? A data type is a predefined set of values that specify the type of values that can be stored in it along with the operation that can be carried out on them. The Java Type Casting is a process by which one data type is converted to another...
John Selawsky
Java Types
June 8, 2021 at 5:14 AM
Java Byte Keyword
What is a “byte”? 8 bits (bit is the smallest unit of data containing at most 2 logical states, normally 0 and 1) combine to make a single unit of addressable memory, called a “Byte”. Here’s a theoretical representation of what a byte normally looks like...
Milan Vucic
Java Types
April 1, 2025 at 10:05 AM
Java Data Types
Java is the statically typed language, meaning that we have to declare the type of a variable before storing the respective data in it, because it will not store the other data type as we can do in dynamically typed languages like Python, Javascript...
Please enable JavaScript to continue using this application.