Latest Web Stories

1

Exploring Smartphone Influence on the Brain: Neurological Perspectives

2

Angular vs. React: Which One Should You Choose?

3

Discover Serenity: Your Guide to Mindfulness Apps

4

Discover how smartphone apps can enhance your mindfulness practice: 5 Senses Exercise with Apps

5

Discover How Smartwatches Measure Blood Pressure: Explained Simply

6

13 Exciting Games Launching in April 2024: From Freedom Planet 2 to TopSpin 2K25!

7

Discover the 5 Amazon Big Spring Deals on Tablets from Samsung, Lenovo

8

Big Savings Alert: Amazfit Smart Watches Now on Sale on Amazon!

9

Amazon's Big Spring Sale: Top 6 Anker Souncore Headphones and Earbuds Deals

10

Affordable VR Adventures: The Best Budget VR Headsets

11

Fly in Peace: Discover the Ultimate Noise-Cancelling Headphones for Flying

12

Bringing AI to Life: NVIDIA's Digital Human Technolgies in Healthcare, Gaming, and More

13

Discover Exciting New Games on NVIDIA GeForce NOW!

14

Steam Spring Sale 2024 is here: Explore the 10 Best FPS Games

15

The Future of iPhones: Apple's Bold Step into AI with DarwinAI

16

Discover the Magic of Sonos Soundbar: Transform Your Home Entertainment Experience!

17

Enhance Your Home Fun: 5 Best Sonos Soundbars to Amp Up Your Entertainment!

18

Pinterest Introduces AI-Powered Body Type Ranges for Inclusive Searches

19

Embrace the Next Wave: 35+ AI Tools for Enhanced Productivity in 2024

20

Xbox Gaming Bonanza: Lots of New Games with Xbox Game Pass!

21

Sony Paves the Way for Gaming Evolution with 'Super-Fungible Tokens' Patent

22

Smart Printing Choices: 10 Key Factors to Consider When Buying an HP Printer or Any Printer

23

Projector Picks: Explore the Best Mini Projectors for Big Screen Fun!

24

JavaScript Essentials: Your Quick Start to Web Coding

25

Gaming Laptop Guide 2024: 10 Crucial Checks Before You Buy + Top 5 Picks for you!

26

Gaming Joy Awaits: Explore the Best PS5 Games of 2024

27

Epic Games Special: Dive into Astro Duel 2 for FREE this week. See What’s Coming Next Week!

28

Fitbit Fitness Tracker Guide 2024: Choose Your Perfect Fit

29

Feel the Beat: Exploring Top Over-Ear Headphones

30

Explore the Web Development Strategies in 2024: A Developers Handbook

31

Explore Must-Play Nintendo Switch Games in 2024!

32

Eclipse Ready: CE and ISO Certified Solar Eclipse Glasses for a Safe Sky Spectacle

33

Disney and Pixar’s Inside Out 2 Introduces New Emotions to Riley's World

34

Discover Waze's cool new features for safer and happier drives!

35

Discover the Top Picks: Best Smartwatches for Your Lifestyle

36

Discover the Best Smartphones Trending Now: Your Easy Guide to the Best Picks!

37

Sound Revolution: Discover the Best Bluetooth Speakers of 2024!

38

Discover the 10 Best Productivity Apps to Supercharge Your Daily Tasks

39

Discover,Install and Enjoy: The Best Chrome Extensions for Developers in 2024

40

Crack the Code: Your Guide to Computer Programming Magic in 2024

41

Boost Your Content Creation: 10 ChatGPT Prompts to Supercharge Content Creation Productivity

42

10 Best Tech Companies in Silicon Valley

43

Top 10 Web Development Interview Questions you can...

44

Learn how to Answer Tell me about Yourself

45

5 Books You Need to Read Right Now

46

25 Practical Ways to Earn Money Online

Translate this page in your preferred language:


Data Types in Java - Codzify.com

Article by: Manish Methani

Last Updated: October 28, 2021 at 8:04am IST
4 min 14 sec read

Identifiers in Java are composed of Unicode characters, numbers, currency symbols, and connecting characters (like underscores). They are used to give name to objects, classes, and variables in Java. But there are certain naming conventions to write an identifier name.

Naming conventions of Identifiers :-

1) Identifiers must start with a letter, a currency character ($), or a connecting character such as the underscore ( _ ). Identifiers cannot start with a number!

2) After the first character, Identifiers can contain any combination of letters, currency characters, connecting characters, or numbers.

3) In practice, there is no limit to the number of characters an identifier can contain.

4)

5) You can't use a Java keyword as an identifier. We will list them below.

6) Identifiers in Java are case-sensitive; foo and FOO are two different identifiers.

Valid Identifiers: 

int _abc;
int $c;
int ______3_a;
int _$;
int this_is_also_valid_identifier;
Invalid Identifiers:
 
 int :b;
 int -d;
 int .f;
 int 7g;

Java Keywords

Java Keywords are predefined, reserved words used in Java programming that have special meanings to the compiler. Always remember Keywords cannot be used as an Identifier or Variable name.

abstract boolean break byte
case catch char class
const continue default do
double else extends final
finally float for goto
if implements import instanceof
int interface long native
new package private protected
public return short static
strictfp super switch synchronized
this throw throws transient
try void volatile while
assert enum

Naming Conventions

1) Classes & Interfaces :-

The first letter of Class or Interface in Java should be capitalized, and if several words are linked together to form the name, the first letter of the inner words should be uppercase. For classes, the names should typically be nouns.

Example :- Manish, Music, Game , Car, SpeedBraker, DemoClass etc.

2) Methods :-

The first letter of Class or Interface in Java should be lowercase, and then normal camelCase rules should be used. CamelCase means first letter of word should be lowercase and first letter of other words linked with that word should be in uppercase format.

Example :- displayInfo , getDetails, getAccountInfo etc.

Variables :-

Like methods, the camelCase format should be used, starting with a lowercase letter . Short names which are meaningful sounds good.

Example :- accountBalance, name, etc.

Constants :-

Java constants are created by marking variables static and final. They should be named using uppercase letters with underscore characters as separators:

Example :- MIN_HEIGHT

Data types in Java

There are two types of Data types in Java:

â–  Primitive Data types : A primitive can be one of eight types: char, boolean, byte, short, int, long, double, or float.

â–  Non Primitive Data types : A reference data types are used to refer to (or access) an object. A reference variable is declared to be of a specific type and that type can never be changed. A reference variable can be used to refer to any object of the declared type, or of a subtype of the declared type (a compatible type).

Type Bits Bytes Minimum Range Maximum Range
byte 8 1 -27 27 - 1
short 16 2 -215 215 - 1
int 32 4 -231 231 - 1
long 64 8 -263 263 - 1
float 32 4 n/a n/a
double 64 8 n/a n/a

 

Test your skills with these expert-led curated
Mock Tests.

C Programming Test

Test your C Programming skills with this comprehensive mock test on C Programming.

Take Test

Flutter Test

Solve most asked Interview Questions on Flutter and Test your foundational skills in flutter.

Take Test

GATE(CSE) Operating Systems

Solve most asked GATE Questions in Operating Systems and test your Gate Score.

Take Test

HTML,CSS Test

This is a mock test designed to help you assess your knowledge and skills in HTML and CSS.

Take Test

(GATE CSE) Data Structures & Algorithms Test

Solve most asked GATE Questions in Data Structures and Algorithms and test your Gate Score.

Take Test

Download the Codzify
Mobile App


Learn Anytime, Anywhere at your own pace. Scan the QR Code with your Mobile Camera to Download the Codzify Mobile App.

Codzify Mobile App Codzify Mobile App