是否可以将void称为字符串?

时间:2013-11-24 12:49:08

标签: oop vala

一直在寻找这个,但这有点难以描述所以我只会在这里问。是否可以将void称为字符串?

我认为一个例子会更好地描述它:

//list of voids in the other class
string[] voids = {"expand()", "show()", "yolo()"};

anotherclass class = new anotherclass();

//call to the void named expand inside the other class
class.voids[0]; //??????

1 个答案:

答案 0 :(得分:2)

为什么要使用字符串数组,请使用函数指针数组!

两个好的链接:

link1 link2