面向对象问题,方法体中不能将对象设置为空吗?

WBOY
Release: 2016-06-06 20:24:34
Original
1478 people have browsed it

面向对象问题,方法体中不能将对象设置为空吗?

如图 我调用Clear方法将p设置为空,在下面的程序中依然可以使用,并且能打印出来。。

回复内容:

面向对象问题,方法体中不能将对象设置为空吗?

如图 我调用Clear方法将p设置为空,在下面的程序中依然可以使用,并且能打印出来。。

这个是C#的代码吧,你这么直接接p传进去,相当于Person p1 = p;这点js也是这样的,其实你那个函数内的p只是一个浅拷贝啊,要是想直接将引用传入进去的话,那么你需要在前面加一个ref

<code>Clear(ref p);
static void Clear(ref Person  p)
{
    p = null;
} </code>
Copy after login

你的Clear方法里面那个p(后面以p0表示方便区分)不是传入的变量p,它跟p指向的是同一块内存,也就是指向了同一个对象,但是你在方法里将p0赋成空,p0不再指向那个对象了,对p没有一点影响,主方法里的局部变量p依旧指向原来的那个对象。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template