I have started programming recently and I got confused when I learnt about data types. Why do we have/need datatypes?
Also languages like Python don't have data types making themm much simpler to learn. Why do languages like C or C++ have datatypes then?
|
The data type of a variable determines what kind of data it can store and what possible values it may take. It also help in determining what type of operations can be performed on the variable. |
|||
|
|
|
There is an important distinction of data types for variables (which only statically typed languages have, the respective statements are called declarations and help to determine and allocate the correct amount of memory at fixed addresses) and data types of values, which are much more common. Data types for variables help the compiler to detect incompatible assignments. As a side benefit of this effort for the developer (unnecessary for dynamically typed languages) the compiler may issue warnings for variables never used, detect attempts to use uninitialized variables etc. |
|||
|
|
|
Data types impose abstract structure on data. This abstraction allows us to work with data through simpler interfaces, or to use more efficient a algorithms for manipulating data. Data types (structures) are the bread and butter of computer science. Languages generally have built-in support for a few common data types (such as arrays, lists, associative arrays), and then vary in how well they support user defined data types. |
|||
|
|
'1',1.0and1? – Blender Jan 2 at 10:17