本文介绍了我的课的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我创建自己的类时,要使用该类的功能,我必须创建该类的对象然后我可以访问该类的功能

级,


例如:


dim obj1 as myclass

obj1 = new myclass

obj1.myfunction(" parameter")

但是,当我使用.net类时,例如字符串我不需要创建一个

对象,我可以直接使用它吗?


例如


x = strings.left(" abc",2)


我该怎么办,以便我的课程的功能也可以访问

in同样的时尚..例如


myclass.myfunction(" parameter")

When I create my own class, to use the functions of that class I have to
create an object of that class and then I can access the functions of that
class,

for example:

dim obj1 as myclass
obj1 = new myclass
obj1.myfunction("parameter")

However, when I use .net class e.g. strings I do not need to create a
object, I can directly use it?

e.g.

x = strings.left("abc",2)

What do I have to do, so that the functions of my class can also be accessed
in the same fashion.. e.g.

myclass.myfunction("parameter")

推荐答案













这篇关于我的课的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 07:50