摘要: 一、Python的标准类型(1)bool型>>> bool("")False>>> bool(None)False>>> bool(False)False(2)数值型Python的数值型数据包含两类:int和float型数据,需要注意的是还有一个complex的类型,也就是复数类型>>> a = c... 阅读全文
posted @ 2014-05-12 23:02 CBDoctor 阅读(730) 评论(0) 推荐(0)
摘要: public List getPageIndex(int pageIndex,int topNum){ String hql = "select top("+topNum+""+")* from " + "(select * from L... 阅读全文
posted @ 2014-05-12 11:14 CBDoctor 阅读(4366) 评论(0) 推荐(0)