Skip to content

Instantly share code, notes, and snippets.

@SamuelSchwent
Created March 3, 2016 15:05
Show Gist options
  • Select an option

  • Save SamuelSchwent/a0fb3b5757376d95a836 to your computer and use it in GitHub Desktop.

Select an option

Save SamuelSchwent/a0fb3b5757376d95a836 to your computer and use it in GitHub Desktop.
Java - Static Class Members Example
public class Countable
{
private static int instanceCount = 0;
public Countable()
{
instanceCount++;
}
public int getInstaneCount()
{
return instanceCount;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment