• 大小: 431KB
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2021-01-06
  • 语言: Java
  • 标签: Thinking  in  Java  

资源简介

这是《The Thinking in Java Annotated Solution Guide》的所有代码的压缩包。

资源截图

代码片段和文件信息

// access/AccessTest.java
// TIJ4 Chapter Access Exercise 5 page 227 
/* Create a class with public private protected and package-access fields and
* method members. Create an object of this class and see what kind of compiler
* messages you get when you try to access all the class members. Be aware that
* classes in the same directory are part of the “default“ package.
*/

/* in same directory:
* package access; 
*
* public class FourWays {
* int a = 0;
* public int b = 1;
* protected int c = 2;
* private int d = 3;
* FourWays() { System.out.println(“FourWays() constructor“); }
* void showa() { System.out.println(a); }
* public void showb() { System.out.println(b); }
* protected void showc() { System.out.println(c); }
* private void showd() { System.out.println(d);

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-03-13 09:27  The Thinking in Java Annotated Solution Guide\
     文件        6148  2017-03-13 09:27  The Thinking in Java Annotated Solution Guide\.DS_Store
     目录           0  2017-03-13 10:00  __MACOSX\
     目录           0  2017-03-13 10:00  __MACOSX\The Thinking in Java Annotated Solution Guide\
     文件         120  2017-03-13 09:27  __MACOSX\The Thinking in Java Annotated Solution Guide\._.DS_Store
     目录           0  2008-01-30 01:13  The Thinking in Java Annotated Solution Guide\Access\
     文件        1173  2007-11-17 20:06  The Thinking in Java Annotated Solution Guide\Access\AccessTest.java
     目录           0  2017-03-13 10:00  __MACOSX\The Thinking in Java Annotated Solution Guide\Access\
     文件         223  2007-11-17 20:06  __MACOSX\The Thinking in Java Annotated Solution Guide\Access\._AccessTest.java
     文件         493  2007-11-17 20:06  The Thinking in Java Annotated Solution Guide\Access\Collision.java
     文件         223  2007-11-17 20:06  __MACOSX\The Thinking in Java Annotated Solution Guide\Access\._Collision.java
     文件        1607  2007-11-17 20:06  The Thinking in Java Annotated Solution Guide\Access\ConnectionManager.java
     文件         223  2007-11-17 20:06  __MACOSX\The Thinking in Java Annotated Solution Guide\Access\._ConnectionManager.java
     文件         620  2007-11-17 20:06  The Thinking in Java Annotated Solution Guide\Access\CookieMonster.java
     文件         223  2007-11-17 20:06  __MACOSX\The Thinking in Java Annotated Solution Guide\Access\._CookieMonster.java
     文件         593  2007-11-17 20:06  The Thinking in Java Annotated Solution Guide\Access\CookieThief.java
     文件         223  2007-11-17 20:06  __MACOSX\The Thinking in Java Annotated Solution Guide\Access\._CookieThief.java
     文件         691  2007-11-17 20:06  The Thinking in Java Annotated Solution Guide\Access\Debug.java
     文件         223  2007-11-17 20:06  __MACOSX\The Thinking in Java Annotated Solution Guide\Access\._Debug.java
     文件         822  2007-11-17 20:06  The Thinking in Java Annotated Solution Guide\Access\Foreign.java
     文件         223  2007-11-17 20:06  __MACOSX\The Thinking in Java Annotated Solution Guide\Access\._Foreign.java
     文件         513  2007-11-17 20:06  The Thinking in Java Annotated Solution Guide\Access\MakeWidget.java
     文件         223  2007-11-17 20:06  __MACOSX\The Thinking in Java Annotated Solution Guide\Access\._MakeWidget.java
     文件         568  2007-11-17 20:06  The Thinking in Java Annotated Solution Guide\Access\ProtectedData.java
     文件         223  2007-11-17 20:06  __MACOSX\The Thinking in Java Annotated Solution Guide\Access\._ProtectedData.java
     文件         557  2007-11-17 20:06  The Thinking in Java Annotated Solution Guide\Access\UnpackagedMyClass.java
     文件         223  2007-11-17 20:06  __MACOSX\The Thinking in Java Annotated Solution Guide\Access\._UnpackagedMyClass.java
     文件         187  2008-01-30 01:13  __MACOSX\The Thinking in Java Annotated Solution Guide\._Access
     目录           0  2008-01-30 01:13  The Thinking in Java Annotated Solution Guide\Arrays\
     文件         952  2007-11-17 20:08  The Thinking in Java Annotated Solution Guide\Arrays\ArrayOfGenerics10.java
     目录           0  2017-03-13 10:00  __MACOSX\The Thinking in Java Annotated Solution Guide\Arrays\
............此处省略737个文件信息

评论

共有 条评论