Skip to content

Instantly share code, notes, and snippets.

@rshepherd
Created November 1, 2015 15:02
Show Gist options
  • Save rshepherd/af03682f6598e3969e31 to your computer and use it in GitHub Desktop.
Save rshepherd/af03682f6598e3969e31 to your computer and use it in GitHub Desktop.
class A {
protected int a;
public A() {
a = 10;
}
}
class B extends A {
private int b;
public B() {
b = 10;
}
public int calc() {
return a * b;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment