Questions tagged «types»

类型和类型系统用于强制程序中的抽象级别。




14
类型检查:typeof,GetType还是?
我见过很多人使用以下代码: Type t = typeof(obj1); if (t == typeof(int)) // Some code here 但我知道您也可以这样做: if (obj1.GetType() == typeof(int)) // Some code here 或这个: if (obj1 is int) // Some code here 就个人而言,我觉得最后一个是最干净的,但是我缺少什么吗?哪一种是最佳使用方式,还是个人喜好?
1511 c#  types  typeof  gettype 



7
type()和isinstance()有什么区别?
这两个代码片段之间有什么区别? 使用type(): import types if type(a) is types.DictType: do_something() if type(b) in types.StringTypes: do_something_else() 使用isinstance(): if isinstance(a, dict): do_something() if isinstance(b, str) or isinstance(b, unicode): do_something_else()
1247 python  oop  inheritance  types 



9
更改Pandas中列的数据类型
我想将表示为列表列表的表转换为Pandas DataFrame。作为一个极其简化的示例: a = [['a', '1.2', '4.2'], ['b', '70', '0.03'], ['x', '5', '0']] df = pd.DataFrame(a) 将列转换为适当类型的最佳方法是什么,在这种情况下,将列2和3转换为浮点数?有没有一种方法可以在转换为DataFrame时指定类型?还是先创建DataFrame然后遍历各列以更改各列的类型更好?理想情况下,我想以动态方式执行此操作,因为可以有数百个列,并且我不想确切指定哪些列属于哪种类型。我可以保证的是,每一列都包含相同类型的值。




10
使用<input type =“ file”>时限制文件格式?
我想限制当用户单击&lt;input type="file"&gt;HTML元素中的“浏览”按钮时可以从本机OS文件选择器选择的文件类型。我有一种感觉,这是不可能的,但我想知道是否有是一个解决方案。我只想保留HTML和JavaScript;请不要使用Flash。
667 html  file  types 

9
PostgreSQL:文本和varchar之间的区别(字符不同)
text数据类型和character varying(varchar)数据类型有什么区别? 根据文档 如果在不使用长度说明符的情况下使用字符变化,则该类型接受任何大小的字符串。后者是PostgreSQL扩展。 和 另外,PostgreSQL提供了文本类型,该文本类型存储任意长度的字符串。尽管类型文本不在SQL标准中,但其他几种SQL数据库管理系统也具有它。 那有什么区别呢?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.