static int g = 12;
int add(int a,int b){
int c = a+b;
String str = new String();
return c;
}
上面涉及的变量和对象分别在哪些空间
哪位大神解答一下呗
int add(int a,int b){
int c = a+b;
String str = new String();
return c;
}
上面涉及的变量和对象分别在哪些空间
哪位大神解答一下呗
全部评论
g是static的,在方法区,a、b、c都在栈上,str在堆里
相关推荐
11-11 14:21
西京学院 C++ 点赞 评论 收藏
分享