Datatype
释义 Definition
数据类型:在编程与计算机科学中,用来规定数据的形式、取值范围以及可对其执行的操作的分类(如整数、字符串、布尔值等)。也常写作 data type。
发音 Pronunciation
/ˈdeɪtətaɪp/
例句 Examples
The datatype of this variable is integer.
这个变量的数据类型是整数。
Before saving the file, the program validates each field’s datatype to prevent errors and improve security.
在保存文件之前,程序会验证每个字段的数据类型,以防止错误并提升安全性。
词源 Etymology
由 data(数据) + type(类型) 组成,原意就是“数据的类型/分类”。作为术语广泛用于计算机科学与编程语言中,用来描述不同类别的数据及其规则。
相关词 Related Words
文献与作品 Literary Works
- The C Programming Language(Kernighan & Ritchie)
- Structure and Interpretation of Computer Programs(Abelson & Sussman)
- Introduction to Algorithms(Cormen, Leiserson, Rivest, Stein)
- Java Language Specification(Oracle / Gosling 等相关规范文档)
- Python Documentation(Python 官方文档,涉及 built-in types / datatypes)