首页 > 作文

java是什么意思(java基础知识点)

更新时间:2023-04-05 03:16:51 阅读: 评论:0

一、基本数据类型的包装类

八种基本数据类型并不是对象,为了将基本类型数据和对象之间实现互相转化,jdk 为每一个基本数据类型提供了相应的包装类。

1.1 包装类基本知识

java 是面向对象的语言,但并不是“纯面向对象”的,因为我们经常用到的基本数据类型就不是对象。但是我们在实际应用中经常需要将基本数据转化成对象,以便于操作。比如:将基本数据类型存储到 object[ ]数组或集合中的操作等等。

为了解决这个不足,java 在设计类时为每个基本数据类型设计了一个对应的类进行代表,这样八个和基本数据类型对应的类统称为包装类(wrapper class)。

包装类均位于 java.lang 包,八种包装类和基本数据类型的对应关系如表所示:

基本数据类型对应的包装类基本数据类型包装类bytebytebooleanbooleanshortshortcharcharacterintintegerlonglongfloatfloatdoubledouble

在这八个类名中,除了 integer 和 character 类以外,其它六个类的类名和基本数据类型一致,只是类名的第一个字母大写而已。

在这八个类中,除了 character 和 boolean 以外,其他的都是“数字型”,“数字型”都是 java.lang.number 的子类。

number 类是抽象类,因此它的抽象方法,所有子类都需要提供实现。number 类提供了抽象方法:intvalue()、longvalue()、floatvalue()、doublevalue(),意味着所有的“数字型”包装类都可以互相转型。

示例:

public class wrapperclasstest{public static void main(string[] args){  integer i=new integer(10);    integer j=new integer(50);  }}

内存分析图:

1.2 包装类的用途

对于包装类来说,这些类的用途主要包含两种:

1. 作为和基本数据类型对应的类型存在,方便涉及到对象的操作,如 object[ ]、集合等的操作。

2. 包含每种基本数据类型的相关属性如最大值、最小值等,以及相关的操作方法(这些操作方法的作用是在基本数据类型、包装类对象、字符串之间提供相互之间的转化!)。

包装类的使用

package cn.pxy.test;public class test {/**测试integer的用法,其他包装类与integer类似*/void testinteger(){//基本类型转化成integer对象integer int1=new integer(10);//已经废弃,不推荐使用integer int2=integer.valueof(20);//官方推荐这种写法//integer对象转化神intint a=int1.intvalue();//字符串转化成integer对象integer int3=integer.parint("334");integer int4=new integer("999");//integer对象转化成字符串string str1=int3.tostring();//一些常见int类型相关的常量system.out.println("int能表示的最大整数:"+integer.max_value);}public static void main(string[] args) {test test=new test();test.testinteger();}}

运行结果:

1.3 自动装箱和拆箱

自动装箱和拆箱就是将基本数据类型和包装类之间进行自动的互相转换。jdk1.5 后,java 引入了自动装箱(autoboxing)/拆箱(unboxing)。

自动装箱:

基本类型的数据处于需要对象的环境中时,会自动转为“对象”。以 integer 为例:

在 jdk1.5 以前,这样的代码 integer i = 5 是错误的,必须要通过 integer i = new integer(5) 这样的语句来实现基本数据类型转换成包装类的过程;

而在 jdk1.5 以后,java 提供了自动装箱的功能,因此只需 integer i = 5 这样的语句就能实现基本数据类型转换成包装类, 这是因为 jvm 为我们执行 了 integer i =integer.valueof(5)这样的操作,这就是 java 的自动装箱。

/*示例*/integer i=100;//自动装箱//相当于编译器自动作以下的语法编译integer i=integer.valueof(100);//调用的是valueof(100),而不是new integer(100)

自动拆箱:

每当需要一个值时,对象会自动转成基本数据类型,没必要再去显式调用 intvalue()、doublevalue()等转型方法。如 integer i = 5;int j = i; 这样的过程就是自动拆箱。

/*示例*/integer i=100;int j=i;//自动拆箱//相当于编译器自动作以下的语法编译int j=i.intvalue();

我们可以用一句话总结自动装箱/拆箱:

自动装箱过程是通过调用包装类的 valueof()方法实现的,而自动拆箱过程是通过调用包装类的 xxxvalue()方法实现的(xxx 代表对应的基本数据类型,如 intvalue()、doublevalue()等)。

自动装箱与拆箱的功能事实上是编译器来帮的忙,编译器在编译时依据您所编写的语法,决定是否进行装箱或拆箱动作。

所以自动装箱与拆箱的功能是所谓的“编译器蜜糖(compiler sugar)”,虽然使用这个功能很方便,但在程序运行阶段您得了解 java 的语义。

//示例package cn.pxy.test;public class test2 {/** * 测试自动装箱和拆箱 */public static void main(string[] args) {integer b=23;//自动装箱int a=new integer(20);//自动拆箱//下面问题需要注意integer c=null;int d=c;//可以通过编译,但此处会出现空指针异常,因为此处其实就是:c.intvalue()}}

1.4 包装类的缓存问题

整型、char类型所对应的包装类,在自动装箱时,对于-128~127之间的值会进行缓存处理,其目的是提高效率。

缓存处理的原理为:如果数据在-128~127这个区间,那么在类加载时就已经为该区间的每个数值创建了对象,并将这256个对象存放到一个名为cache的数组中。每当自动装箱过程发生时(或者手动调用valueof()时),就会先判断数据是否在该区间,如果在则直接获取数组中对应的包装类对象的引用,如果不在该区间,则会通过new调用包装类的构造方法来创建对象幼儿评语。

下面我们以integer类为例,看一看java为我们提供的源码,加深对缓存技术的理解:

integer类相关源码:

public static integer valueof(int i) {      if (i >= integercache.low && i <= integercache.high)          return integercache.cache[i + (-integercache.low)];      return new integer(i);  }

这段代码中我们需要解释下面几个问题:

1. integercache类为integer类的一个静态内部类,仅供integer类使用。

2. 一般情况下 integercache.low为-128,integercache.high为127,

integercache.cache为内部类的一个静态属性。

integercache类相关源码:

private static class integercache {        static final int low = -128;        static final int high;        static final integer[] cache;        static integer[] archivedcache;        static {            // high value may be configured by property            int h = 127;            string integercachehighpropvalue =                vm.getsavedproperty("java.lang.integer.integercache.high");            if (integercachehighpropvalue != null) {                try {                    h = math.max(parint(integercachehighpropvalue), 127);                    // maximum array size is integer.max_value                    h = math.min(h, integer.max_value - (-low) -1);                } catch( numberformatexception nfe) {                    // if the property cannot be pard into an int, ignore it.                }            }            high = h;            // load integercache.archivedcache from archive, if possible            vm.initializefromarchive(integercache.class);            int size = (high - low) + 1;            // u the archived cache if it exists and is large enough            if (archivedcache == null || size > archivedcache.length) {                integer[] c = new integer[size];                int j = low;                for(int i = 0; i < c.length; i++) {                    c[i] = new integer(j++);                }                archivedcache = c;            }            cache = archivedcache;            // range [-128, 127] must be interned (jls7 5.1.7)            asrt integercache.high >= 127;        }        private integercache() {}    }

由上面的源码我们可以看到,静态代码块的目的就是初始化数组cache的,这个过程会在类加载时完成。

包装类的缓存测试:

package cn.pxy.test;public class test2 {public static void main(string[] args) {integer in1=-128;integer in2=-128;system.out.println(in1==in2);//true,因为在缓存范围内system.out.println(in1.equals(in2));//trueinteger in3=1234;integer in4=1234;system.out.println(in3==in4);//fal,因为1234不在缓存范围内system.out.println(in3.equals(in4));//true}}

执行结果:

内存分析如图:

1.5 自定义一个简单的包装类

package cn.pxy.test;/** * 定义一个简单的包装类 * @author 胖咸鱼 * */public class myinteger {private int value;private static myinteger[] cache=new myinteger[256];public static final int low=-128;public static final int high=127;static {//[-128,127]for(int i=myinteger.low;i<=high;i++) {//-128,0;-127,1;-126,2;cache[i+128]=new myinteger(i);}}public static myinteger valueof(int i) {if(i>=low&&i<=high) {return cache[i+128];}return new myinteger(i);}public string tostring() {return this.value+"";}public int intvalue() {return value;}private myinteger(int i) {this.value=i;}public static void main(string[] args) {myinteger m=myinteger.valueof(30);system.out.println(m);}}

运行结果:

二、字符串相关类

string 类、stringbuilder 类、stringbuffer 类是三个字符串相关类。string 类是的对象代表不可变的字符序列,stringbuilder 类和 stringbuffer 类代表可变字符序列。关于这三个类详细的用法,在笔试面试以及实际开发中经常用到,我们必须掌握好它们。

2.1 string类源码分析

string 类对象代表不可变的 unicode 字符序列,因此我们可以将 string 对象称为“不可变对象”。 那什么叫做“不可变对象”呢?指的是对象内部的成员变量的值无法再改变。我们打开 string 类的源码,如图所示:

我们发现字符串内容全部存储到 value[ ]数组中,而变量 value 是 final 类型的,也就是常量(即只能被赋值一次)。 这就是“不可变对象”的典型定义方式。

我们发现string 的某些方法,比如:substring()是对字符串的截取操作,但本质是读取原字符串内容生成了新的字符串。测试代码如下:

package cn.pxy.test;public class teststring1 {public static void main(string[] args) {string s1=new string("abcdef");string s2=s1.substring(2,4);//打印:ab199863system.out.println(integer.tohexstring(s1.hashcode()));//打印:c61,显然s1、s2不是同一个对象system.out.println(integer.tohexstring(s2.hashcode()));}}

运行结果:

在遇到字符串常量之间的拼接时,编译器会做出优化,即在编译期间就会完成字符串的拼接。因此,在使用==进行 string 对象之间的比较时,我们需要特别注意:

//字符串拼接时的优化package cn.pxy.test;public class teststring2 {public static void main(string[] args) {//编译器做了优化,直接在编译的时候将字符串进行拼接string str1="hello"+"java";//相当于str1="hello java"string str2="hellojava";system.out.println(str1==str2);//truestring str3="hello";string str4="java";//编译的时候不知道变量中存储的是什么,所以没办法在编译的时候优化strin准备金g str5=str3+str4;system.out.println(str2==str5);//fal}}

运行结果:

2.2 stringbuffer和stringbuilder

stringbuffer 和 stringbuilder 非常类似,均代表可变的字符序列。 这两个类都是抽象类 abstractstringbuilder 的子类,方法几乎一模一样。打开 abstractstringbuilder的部分源码如下:

abstract class abstractstringbuilder implements appendable, charquence {  /**  * the value is ud for character storage.   */   char value[ ];   //以下代码省略 }

显然,内部也是一个字符数组,但这个字符数组没有用 final 修饰,随时可以修改。因此,stringbuilder 和 stringbuffer 称之为“可变字符序列”。

那两者有什么区别

*stringbuffer jdk1.0 版本提供的类,线程安全,做线程同步检查, 效率较低

*stringbuilder jdk1.5 版本提供的类,线程不安全,不做线程同步检查,因此效率较高,建议采用该类。

常用方法列表:

1.重载的 public stringbuilder append(…)方法,可以为该 stringbuilder 对象添加字符序列,仍然返回自身对象

2.方法 public stringbuilder delete(int start,int end),可以删除从 start 开始到 end-1 为止的一段字符序列,仍然返回自身对象

3.方法 public stringbuilder deletecharat(int index),移除此序列指定位置上的 char,仍然返回自身对象。

4.重载的 public stringbuilder inrt(…)方法,可以为该 stringbuilder 对象在指定位置插入字符序列,仍然返回自身对象

5.方法 public stringbuilder rever(),用于将字符序列逆序,仍然返回自身对象。

6.方法 public string tostring() 返回此序列中数据的字符串表示形式。

7.和 string 类含义类似的方法:

public int indexof(string str) public int indexof(string str,int fromindex) public string substring(int start) public string substring(int start,int end) public int length() char charat(int index)


stringbuffer/stringbuilder 基本用法:

package cn.pxy.test;public class teststringbufferandbuilder {public static void main(string[] args) {/**stringbuilder*/stringbuilder sb=new stringbuilder();for(int i=0;i<7;i++) {sb.append((char)('a'+i));//追加单个字符}system.out.println(sb.tostring());//转换成string输出sb.append(",i can sing my abc!");//追加字符串system.out.print眼花缭乱造句ln(sb.tostring());/**stringbuffer,下面的方法同样适用stringbuilder*/stringbuffer sb2=new stringbuff建筑动画er("胖咸鱼先生说");sb2.inrt(0, "爱").inrt(0, "我");//插入字符串system.out.println(sb2);sb2.delete(0, 2);//删除子字符串system.out.println(sb2);sb2.deletecharat(0).deletecharat(0);//删除某个字符system.out.println(sb2.charat(0));//获取某个字符system.out.println(sb2.rever());//字符串逆序}}

运行结果:

2.3 不可变和可变字符序列使用陷阱

string 使用的陷阱:

string 一经初始化后,就不会再改变其内容了。对 string 字符串的操作实际上是对其副本(原始拷贝)的操作,原来的字符串一点都没有改变。比如:string s =”a”; 创建了一个字符串s = s+”b”; 实际上原来的”a”字符串对象已经丢弃了,现在又产生了另一个字符串s+”b”(也就是”ab”)。 如果多次执行这些改变串内容的操作,会导致大量副本字符串对象存留在内存中,降低效率。如果这样的操作放到循环中,会极大影响程序的时间和空间性能,甚至会造成服务器的崩溃。

相反,stringbuilder 和 stringbuffer 类是对原字符串本身操作的,可以对字符串进行修改而不产生副本拷贝或者产生少量的副本。因此可以在循环中使用。

示例:string和stringbuilder在字符串频繁修改时的效率测试

package cn.pxy.test;public class test {public static void main(string[] args) {/**使用string进行字符串的拼接*/string str8="";//本质上使用stringbuilder拼接,但是每次循环都会生成一个stringbuilder对象long num1=runtime.getruntime().freememory();//获取系统剩余的内部空间long time1=system.currenttimemillis();//获取系统的当前时间for(int i=0;i<5000;i++) {str8=str8+i;//相当于产生了5000个对象}long num2=runtime.getruntime().freememory();long time2=system.currenttimemillis();system.out.println("string 占用内存:"+(num1-num2));system.out.println("string 占用时间:"+(time2-time1));/**使用stringbuilder进行字符串拼接*/stringbuilder sb1=new stringbuilder("");long num3=runtime.getruntime().freememory();long time3=system.currenttimemillis();for(int i=0;i<5000;i++) {sb1.append(i);}long num4=runtime.getruntime().freememory();long time4=system.currenttimemillis();system.out.println("stringbuilder 占用内存:"+(num3-num4));system.out.println("stringbuilder 占用时间:"+(time4-time3));}}

运行结果:

三、时间处理相关类

时间是一维的,我们需要一把刻度尺来表达和度量时间。在计算机世界,我们把 1970 年 1 月 1 日 00:00:00 定为基准时间,每个度量单位是毫秒(1 秒的千分之一)。

我们用 long 类型的变量来表示时间,从基准时间往前几亿年,往后几亿年都能表示。如果想获得现在时刻的“时刻数值”,可以使用:

long now = system.currenttimemillis();//代表当前时刻的毫秒数

这个“时刻数值”是所有时间类的核心值,年月日都是根据这个“数值”计算出来的。我们工作学习涉及的时间相关类有如下这些:

3.1 date时间类(java.util.date)

在标准 java 类库中包含一个 date 类。它的对象表示一个特定的瞬间,精确到毫秒。

1.date() 分配一个 date 对象,并初始化此对象为系统当前的日期和时间,可以精确到毫秒)。

2.date(long date) 分配 date 对象并初始化此对象,以表示自从标准基准时间(称为“历元(epoch)”,即 1970 年 1 月 1 日 00:00:00 gmt)以来的指定毫秒数。

3.boolean after(date when) 测试此日期是否在指定日期之后。

4.booleanbefore(date when) 测试此日期是否在指定日期之前。

5.boolean equals(object obj) 比较两个日期的相等性。

6.long gettime() 返回自 1970 年 1 月 1 日 00:00:00 gmt 以来此 date 对象表示的毫秒数。

7.string tostring() 把此 date 对象转换为以下形式的 string:

dow mon dd hh:mm:ss zzz yyyy 其中:dow 是一周中的某一天 (sun、mon、tue、wed、 thu、 fri、 sat)。

使用示例:

package cn.pxy.test;import java.u冀中职业学院til.date;public class test {public static void main(string[] args) {long nownum=system.currenttimemillis();//当前时刻对应的毫秒数date d=new date();//没有传参,代表当前时刻的对象system.out.println(d.gettime());//返回时间对应的毫秒数date d2=new date(1000l*3600*24*365*150);//距离1970年150年system.out.println(d2);}}

运行结果:

jdk1.1 之前的date 包含了:日期操作、字符串转化成时间对象等操作。jdk1.1 之后,日期操作一般使用calendar 类,而字符串的转化使用 dateformat 类。

3.2 dateformat类和simpledateformat类

dateformat 类的作用:

把时间对象转化成指定格式的字符串。反之,把指定格式的字符串转化成时间对象。dateformat 是一个抽象类,一般使用它的的子类 simpledateformat 类来实现。

示例:dateformat类和simpledateformat类的使用

package cn.pxy.test;import java.text.parexception;import java.text.simpledateformat;import java.util.date;public class testdateformat {public static void main(string[] args) throws parexception {//new出simpledateformat对象simpledateformat s1=new simpledateformat("yyyy-mm-dd hh:mm:ss");simpledateformat s2=new simpledateformat("yyyy-mm-dd");//将时间对象转换成字符串string daytime=s1.format(new date());system.out.println(daytime);system.out.println(s2.format(new date()));system.out.println(new simpledateformat("hh:mm:ss").format(new date()));//将符合指定格式的字符串转化成时间对象,字符串格式需要和指定格式一致string time="2027-10-07";date date=s2.par(time);//字符串转化为时间对象system.out.println("date1:"+date);time="2027-10-07 20:15:30";date=s1.par(time);system.out.println("date2:"+date);}}

运行结果:

代码中格式化字符的含义字母日期或时间元素表示示例gera标志符textady年year1996;96m年中的月份monthjuly;jul;07w年中的周数number27w月中的周数number2d年中的天数number189d月中的天数number10f月中的星期number2e星期中的天数testtuesday;tueaam/pm标记testpmh一天中的小时数(0-23)number0k一天中的小时数(1-24)number24kam/pm中的小时数(0-11)number0ham/pm中的小时数(1-12)number12m小时中的分钟数number30s分钟中的秒数number55s毫秒数number978z时区general time zonepacific standard time; pst;gmt-08:00z时区rfc 822 time zone0800

时间格式字符也可以为我们提供其他的便利。比如:获得当前时间是今年的第几天。代码如下:

package cn.pxy.test;import java.text.simpledateformat;import java.util.date;public class testdateformat {public static void main(string[] args) {simpledateformat s1=new simpledateformat("d");simpledateformat s2=new simpledateformat("yyyy-mm-dd");system.out.println("今天是:"+s2.format(new date()));string daytime=s1.format(new date());system.out.println("今天是一年中的第几天:"+daytime);}}

运行结果:

3.3 calendar日历类

calendar 类是一个抽象类,为我们提供了关于日期计算的相关功能,比如:年、月、日、时、分、秒的展示和计算。

gregoriancalendar 是 calendar 的一个具体子类,提供了世界上大多数国家/地区使用的标准日历系统。

:月份的表示,一月是 0,二月是 1,以此类推,12 月是 11。 因为大多数人习惯于使用单词而不是使用数字来表示月份,这样程序也许更易读,父类 calendar 使用常量来表示月份:january、february 等等。

示例:gregoriancalendar 类和 calendar 类的使用

package cn.pxy.test;import java.util.calendar;import java.util.date;import java.util.gregoriancalendar;public class testcalendar {public static void main(string[] args) {//得到相关日期元素gregoriancalendar calendar=new gregoriancalendar(2999,10,9,22,10,50);int year=calendar.get(calendar.year);//打印2999int month=calendar.get(calendar.month);//打印10int day=calendar.get(calendar.day_of_month);//打印9int day2=calendar.get(calendar.date);//打印9//日:calendar.day_of_month与calendar.date同义int date=calendar.get(calendar.day_of_week);//打印7//星期几,这里是:1-7.周日是1,周一是2.。。。周六是7system.out.println(year);system.out.println(month);system.out.println(day);system.out.println(day2);system.out.println(date);//设置日期gregoriancalendar calendar2=new gregoriancalendar();calendar2.t(calendar.year, 2999);calendar2.t(calendar.month, calendar.february);calendar2.t(calendar.date, 3);calendar2.t(calendar.hour_of_day, 10);calendar2.t(calendar.minute, 20);calendar2.t(calendar.cond, 23);printcalendar(calendar2);//计算日期gregoriancalendar calendar3=new gregoriancalendar(2999,10,9,22,10,50);calendar3.add(calendar.month, -7);//月份减7calendar3.add(calendar.date, 7);//增加7天printcalendar(calendar3);//日历对象和时间对象转换date d=calendar3.gettime();gregoriancalendar calendar4=new gregoriancalendar();calendar4.ttime(new date());}static void printcalendar(calendar calendar) {int year=calendar.get(calendar.year);int month=calendar.get(calendar.month)+1;int day=calendar.get(calendar.day_of_month);int date=calendar.get(calendar.day_of_week)-1;string week=""+((date==0)?"日": date );int hour=calendar.get(calendar.hour);int minute=calendar.get(calendar.minute);int cond=calendar.get(calendar.cond);system.out.printf("%d年%d月%d日,星期%s%d:%d:%dn",year,month,day,week+"  ",hour,minute,cond);}}

运行结果:

四、其他常用类

4.1 math类

java.lang.math 提供了一系列静态方法用于科学计算;其方法的参数和返回值类型一般为 double 型。如果需要更加强大的数学运算能力,计算高等数学中的相关内容,可以使用 apache commons 下面的 math 类库。

math 类的常用方法

1.abs 绝对值

2.acos,asin,atan,cos,sin,tan 三角函数

3.sqrt 平方根

4.pow(double a, double b) a 的 b 次幂

5.max(double a, double b) 取大值

6.min(double a, double b) 取小值

7.ceil(double a) 大于 a 的最小整数

8.floor(double a) 小于 a 的最大整数

9.random() 返回 0.0 到 1.0 的随机数

10.long round(double a) double 型的数据 a 转换为 long 型(四舍五入)

11.todegrees(double angrad) 弧度->角度

12.toradians(double angdeg) 角度->弧度

使用示例:

package cn.pxy.test;public class testmath {public static void main(string[] args) {//取整相关操作system.out.println(math.ceil(3.2));system.out.println(math.floor(3.2));system.out.println(math.round(3.2));system.out.println(math.round(3.8));//绝对值、开方、a的b次幂等操作system.out.println(math.abs(-45));system.out.println(math.sqrt(64));system.out.println(math.pow(5, 2));system.out.println(math.pow(2,5));//math类中常用的常量system.out.println(math.pi);system.out.println(math.e);//随机数system.out.println(math.random());//[0,1)}}

运行结果:

4.2 random类

math 类中虽然为我们提供了产生随机数的方法 math.random(),但是通常我们需要的随机数范围并不是[0, 1)之间的 double 类型的数据,这就需要对其进行一些复杂的运算。如果使用 math.random()计算过于复杂的话,我们可以使用例外一种方式得到随机数,即random 类,这个类是专门用来生成随机数的,并且 math.random()底层调用的就是random 的 nextdouble()方法。

package cn.pxy.test;import java.util.random;public class testrandom {public static void main(string[] args) {random rand=new random();//随机生成【0,1)之间的double类型的数据system.out.println(rand.nextdouble());//随机生成int类型允许范围之内的整型数据system.out.println(rand.nextint());//随机生成【0,1)之间的float类型的数据system.out.println(rand.nextfloat());//随机生成fal或者truesystem.out.println(rand.nextboolean());//随机生成【0,10)之间的int类型的数据system.out.println(rand.nextint(10));//随机生成【20,30)之间的int类型的数据system.out.println(20+rand.nextint(10));//随机生成【20,30)之间的int类型的数据(此方法计算比较复杂)system.out.println(20+(int)(rand.nextdouble()*10));}}

执行结果:

4.3 file类

file 类用来代表文件和目录。

file 类的基本用法

java.io.file 类:代表文件和目录。 在开发中,读取文件、生成文件、删除文件、修改文件的属性时经常会用到本类。

file 类的常见构造方法:public file(string pathname)

以 pathname 为路径创建 file 对象,如果 pathname 是相对路径,则默认的当前路径在系统属性 ur.dir 中存储,如示例:

package cn.pxy.test;import java.io.file;import java.io.ioexception;public class testfile1 {public static void main(string[] args) throws ioexception {system.out.println(system.getproperty("ur.dir"));//获取项目根路径file f=new file("a.txt");//相对路径,默认放到ur.dir目录下面f.createnewfile();//创建文件file f2=new file("d:/b.txt");//绝对路径f2.createnewfile();}}

创建结果:

通过 file 对象可以访问文件的属性:

file 类访问属性的方法列表方法说明public boolean exists()判断 file 是否存在public boolean isdirectory()判断 file 是否是目录public boolean isfile()判断 file 是否是文件public long lastmodified()返回 file 最后修改时间public long length()返回 file 大小public string getname()返回文件名public string getpath()返回文件的目录路径

示例

package cn.pxy.test;import java.io.file;import java.io.ioexception;import java.util.date;public class testfile1 {public static void main(string[] args) throws ioexception {file f = new file("d:/b.txt"); f.createnewfile();system.out.println("file 是否存在:"+f.exists()); system.out.println("file 是否是目录:"+f.isdirectory()); system.out.println("file 是否是文件:"+f.isfile());system.out.println("file 最后修改时间:"+new date(f.lastmodified())); system.out.println("file 的大小:"+f.length()); system.out.println("file 的文件名:"+f.getname()); system.out.println("file 的目录路径:"+f.getpath());}}

运行结果:

通过 file 对象创建空文件或目录(在该对象所指的文件或目录不存在的情况下)

file 类创建文件或目录的方法列表方法说明createnewfile()创建新的filedelete()删除file对应的文件mkdir()创建一个目录;中间某个目录缺失,则创建失败mkdirs()创建多个目录;中间某个目录缺失,则创建该缺失目录

示例:

//mkdirpackage cn.pxy.test;import java.io.file;import java.io.ioexception;public class testfile1 {public static void main(string[] args) throws ioexception{file f = new file("d:/c.txt"); f.createnewfile();f.delete();file f2=new file("d:/电影/华语/大陆");boolean flag=f2.mkdir();//目录结构中有一个不存在,则不会创建整个目录树system.out.println(flag);//创建失败}}
//mkdirspackage cn.pxy.test;import java.io.file;import java.io.ioexception;public class testfile1 {public static void main(string[] args) throws ioexception{file f = new file("d:/c.txt"); f.createnewfile(); // 会在 d 盘下面生成 c.txt 文件 f.delete(); // 将该文件或目录从硬盘上删除 file f2 = new file("d:/动漫/日本/宫崎骏"); boolean flag = f2.mkdirs();//目录结构中有一个不存在也没关系;创建整个目录 树 system.out.println(flag);//创建成功}}

递归遍历目录结构和树状展现

在电影目录下增加几个子文件夹或者文件,用于测试。

package cn.pxy.test;import java.io.file;import java.io.ioexception;public class testfile1 {public static void main(string[] args) throws ioexception{file f=new file("d:/电影");printfile(f,0);}/** * 打印文件信息 * @param file 文件名称 * @param level 层次数(实际是:第几次递归调用) */static void printfile(file file, int level) {//输出层次数for(int i=0;i<level;i++) {system.out.print("-");}//输出文件名system.out.println(file.getname());//如果file是目录,则获取子文件列表,并对每个子文件进行相同操作if(file.isdirectory()) {file[] files=file.listfiles();for(file temp:files) {//递归调用该方法printfile(temp,level+1);}}}}

运行结果:

4.4 枚举

jdk1.5 引入了枚举类型。枚举类型的定义包括枚举声明和枚举体。格式如下:

enum 枚举名 {

枚举体(常量列表)

}

例如:

enum ason {

spring, summer, autumn, winder

}

所有的枚举类型隐性地继承自 java.lang.enum。枚举实质上还是类!而每个被枚举的成员实质就是一个枚举类型的实例,他们默认都是 public static final 修饰的。可以直接通过枚举类型名使用它们。

:当你需要定义一组常量时,可以使用枚举类型。但尽量不要使用枚举的高级特性,事实上高级特性都可以使用普通类来实现,没有必要引入枚举,增加程序的复杂性!

//枚举的使用package cn.pxy.test;import java.util.random;public class testenum {public static void main(string[] args) {// 枚举遍历 for (week k : week.values()) { system.out.println(k); }// switch 语句中使用枚举 int a = new random().nextint(4); // 生成 0,1,2,3 的随机数switch (ason.values()[a]) { ca spring: system.out.println("春天"); break; ca summer: system.out.println("夏天"); break; ca autumn: system.out.println("秋天"); break; ca windter: system.out.println("冬天"); break; }}}/**季节*/ enum ason { spring, summer, autumn, windter }/**星期*/ enum week { 星期一, 星期二, 星期三, 星期四, 星期五, 星期六, 星期日 }

运行结果:

本文发布于:2023-04-05 03:16:48,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/ebf4b7bd39d2a14235210b14c61719cd.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:java是什么意思(java基础知识点).doc

本文 PDF 下载地址:java是什么意思(java基础知识点).pdf

标签:对象   字符串   时间   方法
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图