java基础
一只放羊的
这个作者很懒,什么都没留下…
展开
-
静态内部类和普通内部类的区别以及外部类对其访问方式
区别:静态内部类相对与外部类是独立存在的,在静态内部类中无法直接访问外部类中变量、方法。如果要访问的话,必须要new一个外部类的对象,使用new出来的对象来访问。但是可以直接访问静态的变量、调用静态的方法;普通内部类作为外部类一个成员而存在,在普通内部类中可以直接访问外部类属性,调用外部类的方法。外部类访问方式:public class test { int c=1; st...原创 2019-03-02 16:53:59 · 1676 阅读 · 0 评论 -
关于java构造函数 的错误 there is no default constructor available in
形如有以下形式代码,父类只有有参构造器而没有无参构造器,就会出现there is no default constructor available in XXX 的语法提示错误。class parent{private int age;//带参构造器public parent(int age){this.age=age;}}class child extends parent...原创 2019-03-07 09:41:49 · 14716 阅读 · 3 评论 -
使用waite()时出现IllegalMonitorStateException异常原因及解决办法
import java.lang.Thread;public class robt implements Runnable{int value=1;public void run() { try { Thread.currentThread().waite(5000); } catch (Exception e) { e...原创 2019-03-04 20:26:30 · 689 阅读 · 0 评论 -
ssh出现Error creating bean with name 'memberService' (dao、action都有可能)Does the parameter type of the se
ssh出现Error creating bean with name ‘memberService’ (dao、action都有可能)Does the parameter type of the setter match the return type of the getter?出现的原因是在dao、service、action里面没有设置get/set方法或者方法名称设置不规范...原创 2019-03-29 22:34:26 · 362 阅读 · 0 评论 -
jar包下载网址
https://www.kumapai.com/open/query/?querytype=title&querykey=ooxml原创 2019-04-08 14:42:27 · 312 阅读 · 0 评论 -
ssh进行数据库查询的操作总报空指针异常解决方法
刚上手ssh很多东西不太懂,今天自己试着写了个action,在struts.xml配置了action后访问action发现跟数据库打交道的dao方法总是空指针异常。解决后总结为两个问题:1.在action中的dao或者service成员变量没有设置get/set方法2.dao/service 成员变量名称和配置文件dao.xml/service.xml中的标签的id不一样。额外提醒:在se...原创 2019-04-08 21:35:53 · 1044 阅读 · 0 评论 -
java泛型类型介绍以及使用方法
1.泛型方法(1)无界类型参数的泛型方法public static void printArray(E [] inputArray){…}声明E代表一种不确定的类,声明后可以在函数中当作一种类来使用(2) 有界类型参数的泛型方法当我们需要接受的类是某一个类的子类,高于这个类或者和这个类没关系的类不接收时就用到有界类型的泛型方法。public static <T extend...原创 2019-04-09 15:08:15 · 189 阅读 · 0 评论