我对编程总体上有些新意,我一直在尝试使用程序生成,更具体地说是使用字符串。截至目前,我有元音和辅音类,我已经实例化了字母表中的每个字母,并且我在vowel.java和consonant.java中编写了类方法来返回字符本身,返回字符的字母类型是,并将字符添加到字符串。到目前为止一切都有效,但我不知道如何基于分配给它的变量来识别每个类的实例。这是一段代码,使我的文字更加清晰。
package procgensentence;
public class ProcGenSentence {
public static void main(String[] args) {
String product = "";
//Class Objects
vowel a = new vowel(1, 'a');
consonant b = new consonant(2, 'b');
consonant c = new consonant(3, 'c');
consonant d = new consonant(4, 'd');
vowel e = new vowel(5, 'e');
consonant f = new consonant(6, 'f');
}
}
我希望以后能够通过分配给它的字符识别每个实例,以便稍后当我测试String产品中的前一个字符是辅音还是元音时,确定什么类型下一个字符应该是,我可以正确使用我的.returnType方法来获得正确的字符。