码迷,mamicode.com
首页 >  
搜索关键字:converts    ( 62个结果
Constant-on-time buck-boost regulator converts a positive input to a negative output
Buck regulators find wide application as step-down regulators for converting large positive input voltages into a smaller positive output voltages.Fig...
分类:其他好文   时间:2014-11-28 14:05:24    阅读次数:269
C++ static_cast const_cast dynamic_cast 和reinterpret_cast的区别
1、static_cast Operator The expression static_cast ( expression ) converts expression to the type of type-id based solely on the types present in the ....
分类:编程语言   时间:2014-11-19 22:11:04    阅读次数:245
C# - CLR
?? The Common Language Runtime (CLR), the virtual-machine component of Microsoft's .NET framework, manages the execution of .NET programs. A process known as just-in-time compilation converts compi...
分类:Windows程序   时间:2014-10-30 15:20:30    阅读次数:203
A Tour of Go Type conversions
The expressionT(v)converts the valuevto the typeT.Some numeric conversions:var i int = 42var f float64 = float64(i)var u uint = uint(f)Or, put more si...
分类:其他好文   时间:2014-10-26 21:06:03    阅读次数:264
函数nvl,nvl2,nullif,coalesce
NVL: Converts a null value to an actual valueNVL2:If expr1 is not null, NVL2 returns expr2. If expr1 is null, NVL2 returns expr3. The argument expr1 c...
分类:其他好文   时间:2014-10-26 14:16:34    阅读次数:234
MVC 4中的坑
1、VirtualPathUtility.ToAbsolute这个方法的官方解释是Converts a virtual path to an application absolute path. 意思是应用程序虚拟路径转换为绝对路径但实际是取不到绝对路径的VirtualPathUtility.ToA...
分类:Web程序   时间:2014-10-25 14:23:51    阅读次数:233
Convert String to Long
Given a string, write a routine that converts the string to a long, without using the built in functions that would do this. Describe what (if any) li...
分类:其他好文   时间:2014-10-14 13:01:28    阅读次数:201
c语言itob函数
k&r习题3-5,机械工业那本中文答案不咋的,只给了处理10进制以下的参考,本答案摘自网上的那本英文习题解答 /* itob(n,s,b) * converts the integer n into a base b char */ void itob(int n, char s[], int b...
分类:编程语言   时间:2014-09-13 14:43:45    阅读次数:203
JS中的“==”符号及布尔值转换规则
what are the rules for how == converts types?关于"=="的比较规则:1. Comparing numbers and strings will always convert the strings to numbers.number类型与string类型...
分类:Web程序   时间:2014-09-13 00:38:34    阅读次数:369
Word frequency analysis
Write a program that reads a file, breaks each line into words, scripts whitespace and punctuation from the words, and converts them to lowercase. Mod...
分类:其他好文   时间:2014-08-10 23:51:20    阅读次数:278
62条   上一页 1 ... 4 5 6 7 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!