数组比较------列表不是XP默认的服务 ( 积分: 100 )

  • 主题发起人 主题发起人 Hacker001
  • 开始时间 开始时间
H

Hacker001

Unregistered / Unconfirmed
GUEST, unregistred user!
目的是:求出数组Serarry1比数组Serarry多出的部分
即:Serarrary1[4]:='Background Intelligent Transfer Service';
Serarrary1[5]:='Computer Browser';
Serarrary1[6]:='Indexing Service';
Serarrary1[7]:='ClipBook';


数组Serarrary的值如下:
Serarrary[0]:='Alerter';
Serarrary[1]:='Application Layer Gateway Service';
Serarrary[2]:='Application Management';
Serarrary[3]:='Windows Audio';

数组Serarrary1的值如下:
Serarrary1[0]:='Alerter';
Serarrary1[1]:='Application Layer Gateway Service';
Serarrary1[2]:='Application Management';
Serarrary1[3]:='Windows Audio';
Serarrary1[4]:='Background Intelligent Transfer Service';
Serarrary1[5]:='Computer Browser';
Serarrary1[6]:='Indexing Service';
Serarrary1[7]:='ClipBook';
 
循环 High(Serarrary)*High(Serarrary1)次就可以了.
 
liqj_, 请写具体一点
 
这个问题好难吗?怎么没有人顶一下的
 
for i1 := Low(Serarrary1) to High(Serarrary1) do
if (i1 < Low(Serarrary)) or (i1 > High(Serarrary)) then 是多的
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
I
回复
0
查看
851
import
I
后退
顶部