Type Date cannot be resolved to a type 解决
程序员文章站
2022-04-27 23:44:04
...
今天在写mybatis测试代码,其中用到日期变量。
编写如下代码后便报错:Type Date cannot be resolved to a type。
private Date datetime;
后来查看到Date 在两个包中都用定义。
java.uti.Date 和 java.sql.Date。
因此,如果出现两个包中都有定义的情况下,编译器便会报如上错误。
在使用时应该加上包名。
private java.util.Date datetime;
推荐阅读
-
完美解决input[type=number]无法显示非数字字符的问题
-
html5中去掉input type date默认样式的方法
-
PHP错误Cannot use object of type stdClass as array in错误的解决办法
-
Android WebView 不支持 H5 input type="file" 解决方法
-
完美解决input[type=number]无法显示非数字字符的问题
-
PHP JSON出错:Cannot use object of type stdClass as array解决方法
-
pdf论文中python画的图Type 3 fonts字体不兼容的解决方案
-
Resource Path Location Type Target runtime Apache Tomcat v6.0 is not defined(项目报错)已解决
-
linux mount报错:you must specify the filesystem type的解决方法
-
解决ASP.NET中Type.GetType方法总返回空的问题