Gambas文档
编译和安装
错误消息
代码片段
翻译
废弃的组件
教程
开发环境文档
开发文档
名词解释
如何操作
说明
维基手册
维基搜索
维基许可协议
文档
应用程序仓库
语言概览
语言索引
#Else
#Endif
#If
+INF
-INF
Abs
Access
ACos
ACosh
Alloc
AND
AND IF
Ang
APPEND
AS
Asc
ASin
ASinh
Asl
Asr
ASSERT
ATan
ATan2
ATanh
Base$
Base64$
BChg
BClr
BEGINS
Bin$
Boolean@
BREAK
BSet
BTst
BYREF
Byte@
CASE
CATCH
CBool
Cbr
CByte
CDate
Ceil
CFloat
CHGRP
CHMOD
Choose
CHOWN
Chr$
CInt
CLASS
CLong
CLOSE
Comp
CONST
CONTINUE
Conv$
COPY
Cos
Cosh
CPointer
CREATE
CREATE PRIVATE
CREATE STATIC
CShort
CSingle
CStr
CString
CVariant
Date
Date@
DateAdd
DateDiff
Day
DConv$
DEBUG
DEC
Dec
DEFAULT
Deg
DFree
DIM
Dir
DIV
DO
DOWNTO
EACH
ELSE
END
ENDIF
ENDS
END SELECT
END STRUCT
END WITH
ENUM
Eof
ERROR
ERROR TO
Eval
Even
EVENT
EXEC
Exist
Exp
Exp2
Exp10
Expm
EXPORT
EXTERN
FALSE
FAST
FAST UNSAFE
FINALLY
Fix
Float@
Floor
FLUSH
FOR
FOR EACH
Format$
Frac
Free
FromBase
FromBase64$
FromUrl$
FUNCTION
GOSUB
GOTO
Hex$
Hour
Html$
Hyp
IF
IIf
IN
INC
INCLUDE or #INCLUDE
INHERITS
INPUT
INPUT FROM
InStr
Int
Int@
Integer@
IS
IsAlnum
IsAscii
IsBlank
IsBoolean
IsDate
IsDigit
IsDir
IsFloat
IsHexa
IsInf
IsInteger
IsLCase
IsLetter
IsLong
IsLower
IsMissing
IsNaN
IsNull
IsNumber
IsPunct
IsSpace
IsUCase
IsUpper
KILL
LAST
LCase$
Left$
Len
LET
LIBRARY
LIKE
LINE INPUT
LINK
LOCK
Lof
Log
Log2
Log10
Logp
Long@
LOOP
Lsl
Lsr
LTrim$
Mag
MATCH
Max
ME
Mid$
Min
Minute
MkBool$
MkBoolean$
MkByte$
MkDate$
MKDIR
MkFloat$
MkInt$
MkInteger$
MkLong$
MkPointer$
MkShort$
MkSingle$
MOD
Month
MOVE
NEW
NEXT
NOT
Now
NULL
Oct$
Odd
ON GOSUB
ON GOTO
OPEN
OPEN MEMORY
OPEN MEMORY
OPEN NULL
OPEN PIPE
OPEN PIPE
OPEN STRING
OPTIONAL
OR
OR IF
OUTPUT
OUTPUT TO
PEEK
Pi
Pointer@
PRINT
PRIVATE
PROCEDURE
PROPERTY
PUBLIC
QUIT
Quote$
Rad
RAISE
Rand
RANDOMIZE
RDir
READ
Realloc
REPEAT
Replace$
RETURN
Right$
RInStr
RMDIR
Rnd
Rol
Ror
Round
RTrim$
Scan
SConv$
Second
SEEK
Seek
SELECT
Sgn
SHELL
Shell$
Shl
Short@
Shr
Sin
Single@
Sinh
SizeOf
SLEEP
Space$
Split
Sqr
Stat
STATIC
STEP
STOP
STOP EVENT
Str$
Str@
String$
String@
StrPtr
STRUCT
SUB
Subst$
SUPER
SWAP
Tan
Tanh
Temp$
THEN
Time
Timer
TO
Tr$
Trim$
TRUE
TRY
TypeOf
UCase$
UnBase64$
UNLOCK
Unquote$
UNTIL
Url$
USE
Val
VarPtr
WAIT
WATCH
Week
WeekDay
WEND
WHILE
WITH
WRITE
XOR
Year
本地化和翻译函数
变量声明
常量表达式
常量声明
方法声明
复数
赋值
赋值操作
行标号
结构体声明
局部变量声明
逻辑运算
枚举声明
内置集合
内置数组
使用保留字作为标识符
事件声明
事件循环
属性声明
数据类型
数据类型的二进制表示形式
数组声明
算术运算
外部函数管理
外部函数声明
语言常量
运算符优先级
专用方法
字符串操作
主题
组件
最近的修改

结构体声明

PUBLIC STRUCT Identifier Field 1 AS Datatype Field 2 AS Datatype . . . Field n AS Datatype END STRUCT

该关键字声明一个结构体。

在内部,结构与只有公共变量的类完全相同;但是您可以将它们声明为嵌入式结构或嵌入式结构数组,如下所述。

当使用嵌入式结构或结构的嵌入式数组时,解释器必须创建

临时对象,以便可以像真实对象一样操作它们。而且速度较慢!

因此, 除非迫不得已,否则不要使用结构! 例如,到

与需要C结构的共享C库函数通信。

尽管必须声明结构 PUBLIC, 作为二等公民,他们不能在class代码之外使用。

如果在两个不同的类中声明同样的结构体,那么它们必须有完全一样的域,否则解释器会发生一个错误。

Embedded Arrays

You can have embedded arrays in structures using

PUBLIC STRUCT Identifier ... Field k [ Embedded array declaration ] AS Datatype ... END STRUCT

Fields Alignment

Structures are never packed, i.e. fields are aligned to a memory address that is a multiple of its memory length:
  • A Boolean or a Byte can be stored at any address.

  • A Short is stored at an even address.

  • An Integer is stored at an address that is a multiple of four.

  • ...and so on.

As the declaration order is respected, you may have holes in your structure. For example, if you declare a Byte field and just after an Integer field, you will have a three bytes hole.

There is a problem then: when compiling the C source code, the C compiler may reorder structure fields. And, as far as I know, that process is not standardized nor documented.

There may be a solution in the future with the libffi library used by Gambas. Apparently, that library can send a structure to a C function by taking that problem into account. But that library is far less documented than Gambas, so you see the difficulty!

结构体嵌套

通过下面的语法声明一个变量,可以将一个结构体嵌套到一个正常的类或另一个结构体的内部:

[ PRIVATE | PUBLIC ] Identifier AS STRUCT Structure name

示例

' Gambas class file

PUBLIC STRUCT Arm
  Length AS Float
  NumberOfFingers AS Integer
  HasGlove AS Boolean
END STRUCT

PUBLIC STRUCT Leg
  Length AS Float
  NumberOfFingers AS Integer
  HasSock AS Boolean
  HasShoe AS Boolean
END STRUCT

PUBLIC STRUCT Man
  FirstName AS String
  LastName AS String
  Age AS Integer
  Eyes AS String
  LeftArm AS STRUCT Arm
  RightArm AS STRUCT Arm
  LeftLeg AS STRUCT Leg
  RightLeg AS STRUCT Leg
END STRUCT

Arrays Of Structure

Identifier [ Dimensions ] AS STRUCT Structure name

The structures are embedded, i.e. their contents is directly allocated inside the array.

Such arrays are not real arrays, they have only a few methods of the original array class:
  • They can be accessed by index.

  • They can be enumerated.

  • You can get information about the array length and array dimensions.

That's all!

You can create only embedded array of structures.

See also