[求助]这样相等吗?
假设我定义一个记录类型type studenttype
no as string*7
name as string*20
sex as string*1
score as single
end type
dim student(2) as studenttype 'student是这个记录数组
如下赋值
with student(1)
.no="12345" ‘五位
.name="name1"
.sex="男"
.score=96.2
end with
with student(2)
.no="1234567" ’七位
.name="name2"
.sex="男"
.score=52.0
end with
那么len(student(1))和len(student(2))相等吗?
假如把student(1)和student(2)分别写入文件student1.dat 和 student2.dat
在程序中分别打开,文件号分别为1,2
那么lof(1)和lof(2)相等吗?
[此贴子已经被作者于2006-12-22 19:40:46编辑过]