因此,我一直在尝试通过根据其值定义它们来创建一组卡片,然后为每种颜色创建一个类别。我有一种方法可以创建从2到ace的13张牌的列表:

package test;

import java.util.*;

public class Cartes {

    void liste_cartes(){

        ArrayList liste_cartes = new ArrayList();

        for(int i=2; i<15; i++) {
            liste_cartes.add(i);
        }
    }
}


我尝试在我的色彩课中使用这种方法!

package test;

import java.util.*;

public class Coeur {
    Cartes cartes = new Cartes();
    cartes.liste_cartes();
}


但是我在<identifier expected>上遇到了cartes.liste_cartes();错误。 Java在这里相对较新,因此非常感谢您的帮助。

最佳答案

对于Java程序,JVM首先寻找main()来运行程序。尝试写这个:

public class Coeur {
public static void main(String[] args) {
    Cartes cartes = new Cartes();
    cartes.liste_cartes();
}


}

07-25 21:35