Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从查询中获取值后,我想设置一个变量
println(Termin.endTime.getClass()); // class java.sql.Timestamp
这不起作用:
Timestamp oldTime = Termin.endTime;
我应该使用哪种数据类型?
您必须在使用前导入此类:
import java.sql.Timestamp Timestamp oldTime = Termin.endTime;