本文介绍了枚举类型:项数限制?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在Delphi中,枚举类型中可以包含的项数是否有限制?我需要创建一个可能包含数百个项目的枚举类型,并想要确保例如255个项目没有限制。

Is there a limit in Delphi to the number of items you can have in an enumerated type? I need to create an enumerated type that might have several hundred items, and want to make sure there is not a limit at 255 items for example.

type 
  TMyType = (mtOne, mtTwo, mtThree, ..., mtThreeHundred);


推荐答案

我在德国德尔福市最多发现65535个物品

I found a maximum of 65535 items in a german Delphi book.

在对文档进行一些挖掘之后,我找到了相应的部分:

After some digging in the documenation I found the respective section:

因此,实际上最多应该有4294967295( $ FFFFFFFF )项目。

So in fact there should be a possible maximum of 4294967295 ($FFFFFFFF) items.

这篇关于枚举类型:项数限制?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-12 15:07