所有non-trival编程语言都提供了基本表达式(expression)去表示最简单的表达式组合表达式的方法抽象表达式的方法,也就是为表达式引入一个名字去引用它substitional model 替代模型sumOfSquares(3,2+2)sumOfSquares(3,4)square(3)+...
分类:
其他好文 时间:
2014-08-09 02:33:10
阅读次数:
267
Evaluate the value of an arithmetic expression in Reverse Polish Notation.Valid operators are +, -, *, /. Each operand may be an integer or another ex...
分类:
其他好文 时间:
2014-08-08 23:49:56
阅读次数:
314
Regular Expression MatchingImplement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more o...
分类:
其他好文 时间:
2014-08-08 17:59:16
阅读次数:
173
Get-WmiObject -Class Win32_LogicalDisk -Filter "DriveType=3" | Format-Table deviceid, @{Label="free(GB)"; Expression={($_.freespace/1GB).tostring("f1....
分类:
其他好文 时间:
2014-08-08 12:07:55
阅读次数:
238
Brackets SequenceTime Limit: 1000MSMemory Limit: 65536KTotal Submissions: 25132Accepted: 7083Special JudgeDescriptionLet us define a regular brackets ...
分类:
其他好文 时间:
2014-08-07 18:30:01
阅读次数:
196
好久没更新博客了,今天如果没急事,准备连发三篇,完全讲解Blend最牛的元素-“FluidMoveBehavior”。我向大家保证这三章一定非常精彩,不看你肯定后悔。我相信这三篇文章发表后,国内很多silverlight和wpf作品将充满各种飞出,漂浮的酷炫效果,以及让元素平滑运动的滚动条。你的客户...
分类:
移动开发 时间:
2014-08-07 13:00:39
阅读次数:
509
在Javascript中void是一个操作符,该操作符指定要计算一个表达式但是不返回值。void 操作符用法格式如下:1. javascript:void (expression)2. javascript:void expressionexpression 是一个要计算的 Javascript 标...
分类:
其他好文 时间:
2014-08-07 12:48:29
阅读次数:
243
反反复复考虑后,准备把这一章的切入点瞄准ListBox。并用了一个看起来有点别扭的标题“认识ListBox",许多人看到这里就不爱看了,即使是大学里用winform的学生也会说ListBox我看他好几年了。但我想说,在实际项目开发中,界面元素除了Button,另一个使用率最高的就是ListBox,你...
分类:
其他好文 时间:
2014-08-07 12:14:09
阅读次数:
251
return语句终止当前正在执行的函数并将控制权返回到调用该函数的地方。return语句有两种形式:return;return expression;无返回值函数没有返回值的return语句只能用在返回类型是void的函数中。返回void的函数不要求非得有return语句,因为在这类函数的最后一句后...
分类:
其他好文 时间:
2014-08-06 21:43:52
阅读次数:
420
微软从SQl2005起引入了CTE(Common Table Expression)以强化T-SQL。这是一个类似于非持久视图的好东西。正常的SQL语句:select * from person.StateProvince where CountryRegionCode in (select Cou...
分类:
其他好文 时间:
2014-08-06 17:23:41
阅读次数:
233