go to previous page   go to home page   go to next page hear noise highlighting

Is Int a primitive data type?

Answer:

No — it is not on the list of primitive data types (the word that starts with a small "i" is on the list: int). Remember that Java is case sensitive.


Objects

Primitive Data and Objects

All data in Java falls into one of two categories: primitive data and objects. There are only eight primitive data types. However, Java has many types of objects, and you can invent as many others as you need. Any data type you invent will be a type of object.

Much more will be said about objects in future chapters (since Java is a object oriented programming language). The following is all you need to know, for now:

A (crude) analogy is that a primitive data value is like a nut or a bolt, but an object is like a whole machine. If you want to learn more about objects right away, it would not hurt to jump ahead to the Chapter On Objects and read a few pages.


QUESTION 5:

The following are ALL legitimate data types in Java. Which ones are primitive, and which ones are classes?


go to previous page   go to home page   go to next page