C#常用类和方法1. 数据类型转换函数 Convert.ToXXX();XXX.Parse();XXX.TryParse();2. 日期相关的类与函数获取系统当前日期(含时间):DateTime.Now获取系统当前日期(不含时间):DateTime.Today获取DateTime对象的年、月、日、时...
【题目】
Given a roman numeral, convert it to an integer. Or, Given an integer, convert it to a roman numeral.
Input is guaranteed to be within the range from 1 to 3999.
【罗马数字】
1~9: {"I", "II", "III...
分类:
其他好文 时间:
2014-10-10 22:23:44
阅读次数:
182
Convert.ToInt32()与int.Parse()的区别(1)这两个方法的最大不同是它们对null值的处理:Convert.ToInt32(null)会返回0而不会产生任何异常,但int.Parse(null)则会产生异常。这会在某些情景得到应用,举例来说:假如从url中取一个参数page的...
分类:
其他好文 时间:
2014-10-10 20:46:34
阅读次数:
145
--备份数据库(到时分)Declare @Path Nvarchar(2000) --定义备份路径和备份文件名变量Set @Path ='D:\DataBaseBackUp\LAXDN_FRIST'+CONVERT(NVARCHAR(8),GETDATE(),112)+REPLACE(CONVERT...
分类:
数据库 时间:
2014-10-10 19:09:44
阅读次数:
214
object 最终基类 可以装下所有其他的类型 包含所有的类型所有类型可以装换为 object 但object不能转换为其他类型。⊙ 装箱转换, 允许将值类型隐式转换为引用类型。输出转换的方式:强制转换,convert , parse。(1)强制转换 用(), 同一类中可以用强制转换输出如下注:不可...
分类:
其他好文 时间:
2014-10-10 18:46:14
阅读次数:
205
题目:
Given a roman numeral, convert it to an integer.
Input is guaranteed to be within the range from 1 to 3999.
题目意思很简单,即将一个罗马数字的字符串,转化为整数。
首先我们需要对罗马数字有一个基本的认识,由于题目已将数字大小限定在1~3999,所以我们只需考虑...
分类:
其他好文 时间:
2014-10-10 13:32:24
阅读次数:
200
BST的中序遍历是一个sorted-array,再构造回去成一个BST,先将中间的元素作为根节点,这个节点的左右分别是左子树和右子树。如此递归地进行即可。...
分类:
其他好文 时间:
2014-10-10 02:19:43
阅读次数:
173
在bash的shell下,输入如下命令:#export LC_CTYPE=en_US.UTF-8#!/bin/shexport LC_CTYPE=en_US.UTF-8svn up /home/wwwroot/zj/erp --username "tcy" --password "zj004"htt...
分类:
其他好文 时间:
2014-10-09 16:33:17
阅读次数:
146
#include #include int main() { unsigned int x; std::stringstream ss; ss > x; // output it as a signed type std::cout (x) << std::end...
分类:
其他好文 时间:
2014-10-09 14:17:23
阅读次数:
201
NSJSONSerialization能够处理的JSONDataYou use the NSJSONSerialization class to convert JSON to Foundation objects and convert Foundation objects to JSON.你用N...
分类:
Web程序 时间:
2014-10-09 02:04:37
阅读次数:
305