C# Cast

窗体控件中是有个List控件(ASP.Net)和一个ListView控件(WinForm)。

就以ListView为例子吧,ListView控件可以包含很多项,也可以说是一个集合,就让我们来看看它的Items属性吧!

  1. public class ListView : Control{
  2. public ListView.ListViewItemCollection Items { get; }
  3. public class ListViewItemCollection : IList, ICollection, IEnumerable {
  4. }
  5. }

ListView的Items类型是ListView.ListViewItemCollection,这个ListViewItemCollection实现了IEnumerable。ListView.Items正是一个非泛型的集合,因此可以应用Cast<T>。以下代码假定 listBox 数据绑定在一个Employee的集合上:

  1. int count = listBox.Items.Cast<Employee>().Count();
  2. bool b = listBox.Items.Cast<Employee>().Any(e => e.FirstName == "Bob");

同样C# Cast<T>可以用在ComboBox、DataGridView、TreeNode上:

  1. //ComboBox
  2. var v1 = comboBox.Items.Cast<People>();
  3. //DataGridView
  4. var v2 = dataGridView.SelectedRows.Cast<DataGridViewRow>();
  5. var v3 = dataGridView.SelectedColumns.Cast<DataGridViewColumn>();
  6. var v4 = dataGridView.SelectedCells.Cast<DataGridViewCell>();
  7. //TreeNode
  8. var v5 = treeNode.Nodes.Cast<TreeNode>();

这几个应用中应该第 4 行的应用最多,获取选中行是DataGridView使用最频繁的操作之一。试看下面代码:

  1. //计算平均年龄
  2. int age = dataGridView.SelectedRows. Cast<Employee>().Average(p=>p.Age);
  3. //统计所在城市
  4. string[] cities = dataGridView.SelectedRows. Cast<Employee>().Select(p => p.City).Distinct();

用了C# Cast<T>,我们的代码很精简。Cast<T>甚至还可以用在所有控件的基类Control上,它的Controls属性也是非泛型的!

  1. //Control
  2. var v6 = control.Controls.Cast<Control>();

看来C# Cast<T>好像是为 Control 准备,Control 类和Control 的派生类多处使用了非泛型。可现在都用vs2008(甚至vs2010)了,那为什么WinForm的窗体控件还用非泛型,太落后了吧!!!确实如此,WinForm对泛型控件(Control)的支持上存在很大问题。虽然可以定义泛型控件,也可以使用,可以运行。但会有很多麻烦的,比如窗体设计器没法显示...那只好使用非泛型的了,好在我们有C# Cast<T>!

时间: 2024-10-13 03:30:36

C# Cast的相关文章

can not be cast to javax.servlet.Filter等问题的解决方法

问题1:can not be cast to javax.servlet.Filter 一位从测试转开发的同事首次更新代码,并编译在本地启动web项目时,报如下错误: Exception starting filter encodingFilterjava.lang.ClassCastException:com.gaochao.platform.web.context.filter.ContextFilter2 can not be cast to javax.servlet.Filter 根据

sql 中convert和cast区别

SQL中的cast和convert的用法和区别 更多 2014/1/13 来源:SQL学习浏览量:14125 学习标签: cast convert sql 本文导读:SQL中的cast 和convert都是用来将一种数据类型的表达式转换为另一种数据类型的表达式.CAST 和 CONVERT 提供相似的功能,只是语法不同.在时间转化中一般用到convert,因为它比cast多加了一个style,可以转化成不同时间的格式. 一.语法: 1.使用 CAST CAST ( expression AS d

hive中的常用方法(case,cast,unix_timestamp)

1.case的用法 )格式1 case col when value then '' when value then '' else '' end )格式2 case when col='value' then '' when col='value' then '' else '' end )举例 2.cast 作用:转换 )格式 cast(col as type) )举例 create table catstest as select empno,ename,cast(sal as strin

maven构建web项目,cannot be cast to javax.servlet.Servlet

调试Spring MVC时发现如下异常: java.lang.ClassCastException: org.springframework.web.servlet.DispatcherServlet cannot be cast to javax.servlet.Servlet 问题出在servlet-api.jar上,tomcat部署springMVC项目时是不用这个包的,而用maven构建项目时需要,如果不引用该依赖就会不识别  HttpServletRequest等的类 解决方法是在ma

reshape2 数据操作 数据融合( cast)

我们在做数据分析的时候,对数据进行操作也是一项极其重要的内容,这里我们同样介绍强大包reshape2,其中的几个函数,对数据进行操作cast和melt两个函数绝对少不了. 首先是cast,把长型数据转换成你想要的任何宽型数据, dcast(data, formula, fun.aggregate = NULL, ..., margins = NULL, subset = NULL, fill = NULL, drop = TRUE, value.var = guess_value(data))

case,cast

UPDATE dbo.Dat_Camera SET Cam_Config='<xml><cam><type>2</type>'+CASE WHEN Cam_DX_VideoId is NOT NULL  THEN  '<naming>'+CAST(Cam_DX_VideoId AS NVARCHAR(128))+'</naming>' END +'</cam></xml>'   WHERE CamId=1020

错误 java.lang.ClassCastException: com.ylpw.sms.YZZYSenderUtil cannot be cast to ResourceBundle

出现错误: java.lang.ClassCastException: com.ylpw.sms.YZZYSenderUtil cannot be cast to ResourceBundle 百度搜索错误,没有结果.谷歌搜索:http://stackoverflow.com/questions/5694017/specify-java-localization-file 解决方法,修改了一行代码 prop = ResourceBundle.getBundle(this.getClass().g

error: cast from ‘char*’ to ‘int’ loses precision

编译时出现错误:         error: cast from ‘char*’ to ‘int’ loses precision 原因:程序中存在 char* addrCom; addrCom= ......//赋值 if(-1 == (int)addrCom) //导致编译出错 { ...... } 上面是隐式转换,将其改为标准C++显示类型转换:static_cast<int>或这是reinterpret_cast<int> 依然是: error: cast from ‘c

Java 向Hbase表插入数据报(org.apache.hadoop.hbase.client.HTablePool$PooledHTable cannot be cast to org.apac

org.apache.hadoop.hbase.client.HTablePool$PooledHTable cannot be cast to org.apac 代码: //1.create HTablePool HTablePool hp=new HTablePool(con, 1000); //2.get HTable from HTablepool HTable ht=(HTable)hp.getTable(tName); 原因:如今应用的api版本中pool.getTable返回的类型

用java运行Hadoop程序报错:org.apache.hadoop.fs.LocalFileSystem cannot be cast to org.apache.

用java运行Hadoop例程报错:org.apache.hadoop.fs.LocalFileSystem cannot be cast to org.apache.所写代码如下: package com.pcitc.hadoop; import java.io.IOException; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileSystem; import org.apache.h