DrewJhung's Blog


  • 首页

  • 归档

  • 分类

  • 标签

  • 关于

about

Welcome

welcome to drewjhung’s blog

Hello, guys. I’m a java developer, Hope that I’ll be a Full Stack Developer. In my blog, I’ll share my work summary and learning. Let’s progress together.

talk is cheap, show code.

This is a simple java code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import java.util.List;
public interface Smilable{
public void smile();
}
public class DrewJhung implements Smilable{
public void smile(){
System.out.println("life is so hopeful, I'll smile to this world!");
}
}
public abstract class Test{
public void test();
}
public class JunitTest extends Test{
public void test(){
System.out.println("making a test on class DrewJhung.");
Smilable s = new DrewJhung();
s.smile();
}
}

This is a simple python code:

1
print('hello, python.')

The End

Live a fulfilling life, Be hopeful, positive and yourself on my own programming way.

DrewJhung

DrewJhung

14 日志
12 分类
22 标签
© 2017 DrewJhung
由 Hexo 强力驱动
主题 - NexT.Muse