摘要:
Java中的数据了类型:两大类(基本类型和引用类型) 基本类型:又叫简单类型。直接赋值数值即可。4类8种 byte,short,int,long,float,double,char,boolean 引用类型:存储的地址。操作引用。默认值都是null String,数组,Person类,Student 阅读全文
摘要:
1、接口可以多实现:一个实现类可以同时实现多个接口 package com.qf.demo02_interface; //定义一种规则: interface A{ public void testA();// public void fun(); } //定义另一种规则 interface B{ p 阅读全文