五種基本型別
(1)字元(character)
```
x<-"hello"
class(x)
#輸出結果[1] "character"
```
注意事項:
1.賦值符號<-(最好不要用=)
2.變數的定義書區分大小寫的
3.檢視資料的型別使用class()函式
(2)數值(numberic)
```
x<-3.14
class(x)
#輸出結果[1] "numeric"
```
(3) 整數(integer)
```
x1<-2l
class(x1)
#輸出結果[1] "integer
```
注意事項:整數的賦值後面不許要加l,否則數值型別是numberic
(4)負數(complex)
```
x2<-1+2i
class(x2)
#輸出結果[1] "complex"
```
(5)邏輯(logical)
```
t<-true
class(t)
#輸出結果[1] "logical"
```
注意事項:邏輯型別的treu與false必須是大寫的 資料結構 資料型別
資料結構 資料型別 1 資料結構 它用來反映資料的內部構成,即資料由哪些成分資料構成,以什麼方式構成,呈什麼結構。分成物理上的和邏輯上資料結構。物理上的資料結構反映成分資料在計算機內的儲存安排 邏輯上的資料結構反映成分資料之間的邏輯關係。2 資料型別 資料按照資料結構分類,具有相同資料結構的資料屬於...
xoWidgets 資料型別和資料結構
xofx xowidgets framework 系列文章 1 位元組順序 byte order little endian big endian 2 基本資料型別 base type xovoid xobool xochar xosbyte xobyte xoint8 xouint8 xoint1...
資料結構 抽象資料型別
stdafx.h include include include include include include cout,cin 函式結果狀態碼 define true 1 define false 0 define ok 1 define error 0 define infeasible 1 ...