//: ch1.01/IntChar.java
package object;
import java.util.*; public class IntChar {
int x; char y;
public IntChar(){
System.out.println(x);
System.out.println(y);
}
public static void main(String[] args) {
new IntChar();
}
}

/* output:
test
*///~


package Object;
//: ch1.2/HelloWorld.java public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World");
} }/*
* output:(55% match) hell. it's:
* Wed Nvember 01 13:42 MDT 2018
*/// :~
//: ch1.3/ATypeName.java
package Object; import java.util.*; public class ATypeName{
int x;
public static void main(String[] args){
ATypeName a = new ATypeName();
a.x=4;
System.out.print(a.x);
} }
/* class object
*/// :~
//: ch1.4/DataOnly.java
/**study
* @author feilong
*/
package Object;
import java.util.*; public class DataOnly{
public static void main(String[] args){
DataOnly data = new DataOnly();
}
}
//: ch1.5/Dataonly.java
/**study
* @author feilong
*/
package Object;
import java.util.*; public class Dataonly{
int x;
double d;
boolean b; public static void main(String[] args){
Dataonly data = new Dataonly();
data.x=47;
data.d=1.1;
data.b=false;
System.out.println("data.x="+data.x);
System.out.println("data.d="+data.d);
System.out.println("data.b="+data.b);
}
}/* output
data.x = 47
data.d = 1.1
data.b = false
*///:~
//: ch1.6/Storage.java
/**@version 1.6
* @author feilong
*/
package Object;
import java.util.*; public class Storage{
public int storage(String s){
return s.length()*2;
}
public static void main(String[] args){
Storage st = new Storage();
String s = "helloword";
int l=st.storage(s);
System.out.println(l);
}
}
/* output:
* storage(s);
*///:~
//: ch1.7/Incrementable.java
/**@author feilong
* @version 1.7
*/
package Object;
import java.util.*; class StaticTest{
static int i = 47;
} public class Incrementable{ static void increment()
{
StaticTest.i++;
}
public static void main(String[] args){
Incrementable sf = new Incrementable();
sf.increment();
System.out.println(StaticTest.i);
}
}/* Output:
StaticTest.i
*///:~//: ch1.8/ShowStatic.java/**@author feilong* @version 1.8*/
package object;
import java.util.*;
public class ShowStatic{
static int i = 7; public static void main(String[] args){
ShowStatic ss = new ShowStatic();
ss.i=9;
ShowStatic sy = new ShowStatic();
ShowStatic sz = new ShowStatic();
System.out.println("ss.i = "+ss.i);
System.out.println("sy.i = "+sy.i);
System.out.println("sz.i = "+sz.i);
}
}/* output:
ss.i = 9
sy.i = 9
sz.i = 9
*///:~ CH1.11

//: Object/AllTheColorsOfTheRaibow.java
/**@author feilong
* @version 1.0
*/
package object;
import java.util.*;

public class AllTheColorsOfTheRaibow{

int anIntegerRepreSentingColors;

void changeTheHueOfTheColor(int newHue)
{
anIntegerRepreSentingColors = newHue;
}

public static void main(String[] args)
{
AllTheColorsOfTheRaibow all = new
AllTheColorsOfTheRaibow();
all.changeTheHueOfTheColor(8);
System.out.println(all.anIntegerRepreSentingColors);
}
}/* output:
这个程序 抄了作者的
*///:~

ch1.12

// object/HelloWord.java
/**The first Thinking in java example program
* Displays a string and today's date
* @author feilong
* @author https://home.cnblogs.com/u/jiangfeilong/
* @version 2.0
*/
package object;
import java.util.*;

public class HelloWord2 {
/** Entry point to class & application
* @param args array of string arguments
* @author exceptions No exception thrown
*/
public static void main(String[] args)
{
System.out.printf("%s\n","hello world");
System.out.println(new Date());
}
}/* output:
hello it's
wed November 5 23:01:34 MDT 2018
*///~

ch1.13

//: object/Documentation.java
package object;
/**
* @author feilong
* Run Documentation1.java Documentation2.java
* and Documentation3.java through javadoc. Verify
* the resulting documentation with your Web
* browser
*/
public class Documentation {
public static void main(String[] args)
{

}

}///~

ch1.14

//: object/Html.java
package object;
/**
* <pre>
* System.out.println(new date());
* </pre>
* <pre> 格式化输出 </pre>
*/
public class Html {
/** A variable comment */
public int i;
/** A method comment
* you can <em>even</em>insert a list
* <ol>
* <li> Item one
* <li> Item two
* <li> Item three
* </ol>
* <ol>
* <li>有序 HTML 列表:
* </ol>
*/
public void f()
{ } }///~

ch1.15

//: ch1.2/HelloWorld.java
/************here can't show***********
*/
package Object;
import java.util.*;
/**
* @author feilong
*<code>d</code>
*/
public class HelloWorld {
/** @param args description(must have two **)
* efsadf
*/
public static void main(String[] args) {
/* @return description
* true
*/
System.out.println("Hello, World");
} }/*
* output:(55% match) hell. it's:
* Wed Nvember 01 13:42 MDT 2018
*/// :~

ch1.16

//: object/OverLoading.java
package object;
import java.util.*;
import static net.mindview.util.Print.*; class Tree{
int height;
Tree()
{
print("Planting a seeding");
height = 0;
}
Tree(int initialHeight)
{
height = initialHeight;
print("Creating new tree that is" +
height + " feet tall");
}
void info(){
print("Tree is " + height + "feei tall");
}
void info(String s)
{
print(s+ "; Tree is " + height + " feet tall");
} } /**
* @author feilong
*/
public class OverLoading
{
/**@param args put here can use */
public static void main(String[] args)
{
for(int i =0 ;i<5; i++)
{
Tree t = new Tree(i);
t.info();
t.info("OverLoading method");
}
new Tree(); } } /*
Creating new Tree that is 0 feet tall
Tree is 0 feet tall
overloaded method: Tree is 0 feet tall
creating new Tree that is 1 feet tall
Tree is 1 feet tall
overloading method: Tree is 1 feet tall
overloading method: Tree is 2 feet tall
Tree is 2f feet tall
overloading method: Tree is 1 feet tall
Creating new Tree that is 3 feet tall
Tree is 4 feet tall
overloading method: Tree is 4 feet tall
planting seedling
*///~

JAVA 编程思想第一章习题的更多相关文章

  1. [Java编程思想] 第一章 对象导论

    第一章 对象导论 "我们之所以将自然界分解,组织成各种概念,并按其含义分类,主要是因为我们是整个口语交流社会共同遵守的协定的参与者,这个协定以语言的形式固定下来--除非赞成这个协定中规定的有 ...

  2. 学习java编程思想 第一章 对象导论

    一.面向对象的五个基本特性: 1.万物皆为对象.将对象视为奇特的变量,他可以存储数据,还可以要求它在自身上执行操作. 2.程序是对象的合集,他们通过发送消息告诉彼此所要做的. 3.每个对象都有自己的由 ...

  3. JAVA编程思想第一章——对象导论

  4. java编程思想第九章接口

    9.1抽象类和抽象方法 为什么要有抽象类? 是希望通过通用接口操作一系列类. 那么抽象类的形式是什么样的呢? 声明类的使用使用abstract关键字,且在该类中应该具有抽象方法. 注:抽象方法被关键字 ...

  5. Java编程思想 第九章 接口

    第九章 接口 抽象类和抽象方法 抽象:从具体事物抽出.概括出它们共同的方面.本质属性与关系等,而将个别的.非本质的方面.属性与关系舍弃,这种思维过程,称为抽象. 这句话概括了抽象的概念,而在Java中 ...

  6. [Java编程思想] 第二章 一切都是对象

    第二章 一切都是对象 2.1 用引用操纵对象   创建一个String引用: String s;   这里所创建的只是引用,并不是对象.   创建一个引用的同时便初始化: String s = &qu ...

  7. JAVA编程思想第一题出现错误

    //: object/E01_DefaultInitialization.java public class E01_DefaultInitialization{ int i ; char c ; p ...

  8. JAVA编程思想第二章答案

    欢迎访问我的CSDN博客查看https://mp.csdn.net/mdeditor/94797839# 有其他问题欢迎发送邮箱至hpzhangjunjiell@163.com 感谢

  9. 《java编程思想》读书笔记(一)开篇&第五章(1)

    2017 ---新篇章  今天终于找到阅读<java编程思想>这本书方法了,表示打开了一个新世界. 第一章:对象导论 内容不多但也有20页,主要是对整本书的一个概括.因为已经有过完整JAV ...

随机推荐

  1. 03-13_static关键字

    static主要作用 常见定义结构:public static void main(): static关键字可以用于定义属性及方法: static定义属性 在一个类之中,主要的组成就是属性和方法(分为 ...

  2. 网址,域名,IP,主机名的区别

    域名 通常 Internet 主机域名的一般结构为:主机名.三级域名.二级域名.顶级域名(又称为一级域名).   二级域名及其以上级别的域名,统称为子域名,有多少个点就是几级域名   顶级域名分为两类 ...

  3. 库zlog的使用手册

    库官方网址: 使用手册:    http://hardysimpson.github.io/zlog/UsersGuide-CN.html#htoc11 [formats] simple = &quo ...

  4. json 的类型

    json靠双引号与单引号, 区分是NUMBER 还是 STRING

  5. Excel根据字符串截取单元格部分内容

    我第一列的数据是这样的 我需要 1.将“projectId=”后面的数字放到第二列, 以及 2.将”mediumId=”后面的数字放到第三列 针对1使用函数:=MID(A2,FIND("pr ...

  6. 在Github和oschina上搭建自己的博客网站

    在Github上搭建 - 参考链接 搭建一个免费的,无限流量的Blog----github Pages和Jekyll入门 GitHub + Jekyll 搭建并美化个人网站 用Jekyll搭建的Git ...

  7. eclipse使用异常An error has occurred.see error log for more details eclipse

    eclipse使用异常An error has occurred.see error log for more details eclipse 解决Eclipse,MyEclipse出现An erro ...

  8. Django学习手册 - ORM 单表数据获取

    Django 单表数据的获取: 先建立数据表格 from django.db import models # Create your models here. class userinfo(model ...

  9. Javascript - Jquery - 其它

    Ajax函数 $.ajax(url, type, success, error)//url:请求的页面路径//type:请求方式//success:请求成功的回调,该函数有两个参数:服务器返回数据(d ...

  10. 在Linux安装ASP.NET Core运行时环境

    我使用的是Centos7 ,其它的Linux请参考微软文档   微软官方介绍文档:                                https://www.microsoft.com/n ...