在搞数据库时,发现有这样的一个字段,类型是NUMBER(38),查看了一下里面的数据,都是这样的: 1323957678114132132699429513221293068041322129716220 猜到应该是1970年1月1号0点0分距现在的毫秒值. 解决办法是写一个转换函数: create or replace function num_to_date(in_number NUMBER) return date isbegin return(TO_DATE('19700101','
public static int getAgeByBirthday(String s) { Date birthday = null; SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd"); try { birthday = format.parse(s); Calendar cal = Calendar.getInstance(); if (cal.before(birthday)) { throw new Ill
继承会发生在子类和父类中,如图所示,是一系列类的继承关系类图,Person是类层次结构中的根类,Student是Person的直接子类,Worker是Person的直接子类.这个继承关系类图的具体实现代码如下: class Person { var name : String var age : Int func description() -> String { return "\(name) 年龄是: \(age)" } convenience init () { self.
1.包装类存在的意义 通俗解释就是由于Java是面对对象的语言,而基本类型不具有面对对象的概念,为了弥补不足,引入了包装类方便使用面对对象的变成思想操作基本类型. 2.基本类型和包装类对应关系 byte Byte int Integer short Short long Long float Float double Double boolean Boolean char Character 注:String不是基本类型,所以不存在包装类的概念.很多初学者容易混淆这个概念. 3.包装类的使用 以