我想创建一个对象…说一个“电影”对象.该对象应该有一个方法名称“停止”,所以我可以在下面有这个代码 dim Mov as new MovieMov.Stop ' To execute the Stop method. 在我的电影课上,我应该有这样
dim Mov as new Movie Mov.Stop ' To execute the Stop method.
在我的电影课上,我应该有这样的东西.
Sub Stop() 'code here needed for the Stop subroutine End Sub
但是,我不能使用“停止”作为名称,因为这是一个保留字.我看到一个VB代码,其中“Stop”作为方法之一.不幸的是,代码受到保护,所以我无法查看它.
如何将子程序命名为“停止”?
如果您使用Stop创建了一个类型库以及您的其他方法和属性,然后在您的类中使用Implements,它可能会有效.我没有测试过这个.更新:
见Tutorial: Using Reserved Words as VB6 Class Member Names