Skip to content

Instantly share code, notes, and snippets.

@BalicantaYao
Created August 28, 2014 14:27
Show Gist options
  • Save BalicantaYao/111c22ea172d2ccb5454 to your computer and use it in GitHub Desktop.
Save BalicantaYao/111c22ea172d2ccb5454 to your computer and use it in GitHub Desktop.
FinalInConstructor.java
public class FinalInConstructor {
private final int LINE_NUM;
public FinalInConstructor() {
LINE_NUM = 10;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment