1 Star 0 Fork 2

Wings/JavaProgramming

forked from tzhanggit/JavaProgramming 
Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
Bottle.java 403 Bytes
Copy Edit Raw Blame History
tzhanggit authored 2020-03-19 14:23 +08:00 . 修改部分代码注释
package ch3;
public class Bottle {
int height;
int length;
Water w;
Gaizi g;
public void daoWater() {
System.out.println("ˮ:" + w.name + "");
}
public static void main(String[] args) {
Bottle b = new Bottle();
b.height = 10;
b.length = 10;
Water happyWater = new Water();
b.w = happyWater;
b.daoWater();
}
}
class Water{
String name = "ˮ";
}
class Gaizi{
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/wingszeng/JavaProgramming.git
git@gitee.com:wingszeng/JavaProgramming.git
wingszeng
JavaProgramming
JavaProgramming
master

Search