What is the difference between a class and a datatype?

前端 未结 10 1074
广开言路
广开言路 2021-02-13 15:30

I have heard the following statement:

We can say class is a datatype or a datatype is one type of class.

Can anyone explain to me wh

10条回答
  •  遥遥无期
    2021-02-13 15:37

    A class is a type of a data type. It allows you to declare a variable along with its datatype. E.g.:

    class big  
    {  
        public int a;  
        .......  
        ......    
    }    
    

    Here, int is a data type and big is the class name.

    Hope you got little idea about it!

提交回复
热议问题