了解 C# 中的语法

发布于 2024-08-30 12:13:31 字数 226 浏览 3 评论 0 原文

我希望有人能帮助我理解下面的代码行中发生了什么:

Table t = (Table)Page.FindControl("Panel1").FindControl("tbl");

我理解 Page.FindControl("Panel1").FindControl("tbl"); 为什么Page.FindControl之前有一个(Table)?

I am hoping someone can help me understand what is going on in the code line below:

Table t = (Table)Page.FindControl("Panel1").FindControl("tbl");

I understand Page.FindControl("Panel1").FindControl("tbl");
Why is there a (Table) before the Page.FindControl?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

乖乖哒 2024-09-06 12:13:31

FindControl 被声明为返回 Control (猜测:),而您需要将结果存储在 Table 类型的变量中。

(Table) 位是一个 cast - 它基本上是在说,“我认为这将是一个 Table。在执行时为我检查一下,然后让我相应地使用它。”

FindControl is declared to return Control (at a guess :) whereas you need to store the result in a variable of type Table.

The (Table) bit is a cast - it's basically saying, "I think this will be a Table. Check it for me at execution time, and then let me use it accordingly."

山有枢 2024-09-06 12:13:31

Page.FindControl 返回一个 Control 类型&因此您需要将其转换为您需要使用的相关控件类型...

参考:http://msdn.microsoft.com/en-us/library/31hxzsdw.aspx

HTH。

旁注:

我希望我们能够做到:

var t = Page.FindControl<Panel>("Panel1").FindControl<Table>("tbl"); 

也许通过一些扩展方法的魔法,我们可以获得:

public static class Extension{

  public static T FindControl<T>(this Control control, string id) 
   where T : Control{
       return control.FindControl(id) as T;
  }

}

Page.FindControl returns a Control type & so you will need to cast it to the relevant type of control you need to use...

Ref.: http://msdn.microsoft.com/en-us/library/31hxzsdw.aspx

HTH.

Side note:

I wish we could do:

var t = Page.FindControl<Panel>("Panel1").FindControl<Table>("tbl"); 

Maybe with a bit of extension method magic, we could get:

public static class Extension{

  public static T FindControl<T>(this Control control, string id) 
   where T : Control{
       return control.FindControl(id) as T;
  }

}
顾冷 2024-09-06 12:13:31

FindControl 返回Control 类型。

代码中的表继承Control。通过将对象显式转换为其定义的类型,您可以访问该类型的所有属性,而不仅仅是从 Control 继承的属性。

FindControl returns a type of Control.

Table in your code inherits Control. By explicitly casting the object to it's defined Type, you get access to all properties of that Type, instead of only the inherited properties from Control.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文