5个回答
展开全部
不对,作用域怎么能调用呢?作用域是一个范围,变量的作用域是定义起至函数结尾。该变量只能在本函数内部使用,外部函数不能访问该变量。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
1、一般常用的是在函数体的开头定义的变量为局部变量,作用域就在这个函数体里面({}这两个大括号之间)。其他地方对这个变量不可见(不能使用这个变量),函数退出以后,局部变量被系统收回。
2、局部变量被new了一个内存空间,那么函数退出后,此局部变量仍然还存在。这是new的特性。new了一个内存出来,这个内存必须要用delete才能释放。所以这种情况,即使是局部变量,只要是用new出来的,其他函数也能使用这个局部变量new出来的那个内存,但不一定就是这个变量名了。
2、局部变量被new了一个内存空间,那么函数退出后,此局部变量仍然还存在。这是new的特性。new了一个内存出来,这个内存必须要用delete才能释放。所以这种情况,即使是局部变量,只要是用new出来的,其他函数也能使用这个局部变量new出来的那个内存,但不一定就是这个变量名了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不对
函数内定义的局部变量不能被其他函数直接调用
函数内定义的局部变量不能被其他函数直接调用
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2012-07-20
展开全部
Are you in the middle of an exam? Haha just curious.
It really depends on where you declare the variable, heap or stack?
The destructor will always be called for stack local variables, in anther word, a local variable's memory resource is auto-collected after the termination of the according fucntion.
However if you declare something on the heap for example malloc or new, a programmer has to release the memory resource manually otherwise, this will make the memory space accessable to functions outside the local function.
It really depends on where you declare the variable, heap or stack?
The destructor will always be called for stack local variables, in anther word, a local variable's memory resource is auto-collected after the termination of the according fucntion.
However if you declare something on the heap for example malloc or new, a programmer has to release the memory resource manually otherwise, this will make the memory space accessable to functions outside the local function.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询