How can we check that how many times a java program has executed previously?

前端 未结 2 1435
南笙
南笙 2021-01-16 05:32
class Testing{

    static int count = 0;
    public Testing(){
        count++;
    }
    public static void main(String[] args){
        Testing[] testObjects= new         


        
2条回答
提交回复
热议问题