摘要: This program explores the String class and its various methods. With this you will be able to initialize strings using different constructors and use them. To see how the methods of the 'String' class work, see the following code. 阅读全文
posted @ 2007-10-24 11:32 Derek 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 如果你还不是小“腹”婆,那么就赶紧防患于未然,将生活习惯修正吧;如果很不幸地已经是了,没关系,只要能努力做到以下小秘诀,也可以摆脱小“腹”婆、迈向小“腰”精哦! 1、坐姿要端正 长期待在办公室的女性,坐姿绝对要端正,不可以驼背,脚也别帅气地到处乱摆,因为端正的坐姿不仅让仪态更佳,也可以让你的腹部及臀部保持在紧张的状态,所以臀线不易变形,腿部曲线更因此而得到修正。 2、不要忍便 如果忍... 阅读全文
posted @ 2007-10-24 10:33 Derek 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 1. 当前系统日期、时间 select getdate() 2. dateadd 在向指定日期加上一段时间的基础上,返回新的 datetime 值 例如:向日期加上2天 select dateadd(day,2,'2004-10-15') --返回:2004-10-17 00:00:00.000 3. datediff 返回跨两个指定日期的日期和时间边界数。 ... 阅读全文
posted @ 2007-10-24 09:36 Derek 阅读(12399) 评论(0) 推荐(1) 编辑