由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
DotNet版 - Reference type问题
相关主题
麻烦大家帮忙看看:cannot find dependency数据绑定问题
请各位老大分享一下exception的使用经验吧。自动化的问题 (WebBrowser)
control array in .netA VB Question from a beginner
一道mcad考试题求解(有关DataAdapter)A Bug about TextBox?
问题又来了.Chaago.com
how to let button response 'return' key?求教:从条形码扫描器Scanner读数据到VB .NET程序
C# problems请教:asp.net 如何使两个validation有顺序的执行
datagrid helpHow to create this Asp.net Textbox
相关话题的讨论汇总
话题: txtbox2话题: textbox话题: reference话题: txtbox3话题: type
进入DotNet版参与讨论
1 (共1页)
j*****o
发帖数: 320
1
Class是Reference Type. 怎么才能只传递值?以一个简单的TextBox为例:
TextBox txtBox2 = new TextBox();
txtBox2.Text = "2";
TextBox txtBox3 = txtBox2 ;
txtBox3.Text = "3";
MessageBox.Show(txtBox2.Text); // 怎么才能够输出2?
谢谢!
m******t
发帖数: 2416
2

You can't. By the fourth line above, txtBox2.Text is already "3".
Note txtBox3 is referencing the same object as txtBox2. This does
not have to do with passing by ref or value.

【在 j*****o 的大作中提到】
: Class是Reference Type. 怎么才能只传递值?以一个简单的TextBox为例:
: TextBox txtBox2 = new TextBox();
: txtBox2.Text = "2";
: TextBox txtBox3 = txtBox2 ;
: txtBox3.Text = "3";
: MessageBox.Show(txtBox2.Text); // 怎么才能够输出2?
: 谢谢!

j*****o
发帖数: 320
3
有什么办法在用txtBox2给txtBox3付值得时候,不传递txtBox2的reference, 而只是传递
txtBox2的值?
谢谢。

【在 m******t 的大作中提到】
:
: You can't. By the fourth line above, txtBox2.Text is already "3".
: Note txtBox3 is referencing the same object as txtBox2. This does
: not have to do with passing by ref or value.

m******t
发帖数: 2416
4

Not any I know of. 8-)
Except, of course, you make a copy of txtBox2 first...

【在 j*****o 的大作中提到】
: 有什么办法在用txtBox2给txtBox3付值得时候,不传递txtBox2的reference, 而只是传递
: txtBox2的值?
: 谢谢。

j*****o
发帖数: 320
5
怎么叫make a copy? 谢谢。

传递

【在 m******t 的大作中提到】
:
: Not any I know of. 8-)
: Except, of course, you make a copy of txtBox2 first...

m******t
发帖数: 2416
6
I meant literally make another text box, and call it txtBox3.

【在 j*****o 的大作中提到】
: 怎么叫make a copy? 谢谢。
:
: 传递

1 (共1页)
进入DotNet版参与讨论
相关主题
How to create this Asp.net Textbox问题又来了.
请问实现关注计数功能how to let button response 'return' key?
RequiredFieldValidator是什么时候做validate的?C# problems
asp.net objectdatasource问题datagrid help
麻烦大家帮忙看看:cannot find dependency数据绑定问题
请各位老大分享一下exception的使用经验吧。自动化的问题 (WebBrowser)
control array in .netA VB Question from a beginner
一道mcad考试题求解(有关DataAdapter)A Bug about TextBox?
相关话题的讨论汇总
话题: txtbox2话题: textbox话题: reference话题: txtbox3话题: type