Skip to content

Instantly share code, notes, and snippets.

@VolatileDream
VolatileDream / keybase.md
Created April 11, 2018 02:54
keybase.md

Keybase proof

I hereby claim:

  • I am volatiledream on github.
  • I am volatiledream (https://keybase.io/volatiledream) on keybase.
  • I have a public key ASDGX_L6ZkUjiTW7grAVmQLvoXjvJXtC89gssJnxKvNRAwo

To claim this, I am signing this object:

@VolatileDream
VolatileDream / Static Test
Created February 25, 2014 03:10
A quick test to show behaviour of static function hiding in java
public class StaticTest {
static class A {
static void method(){
System.out.println("A:method()");
}
}
static class B extends A{