//In the stack, as long as a method is encountered,
//A method stack will be re-opened.Even
//another method contained in the method will reopen a method stack.
//Please tell me, the memory analysis of the following parameters.
public class Main {
public static void main(String[] args) {
XX x=new XX();
m.get(23,x);
}
}
class XX {
public void san(int i){
for(int k=1;k
for(int n=1;n<=k;n++){
System.out.print("*");
}
System.out.println("");
}
}
}
class Meth {
public void get (int w ,XX q){
q.san(w);
}
}