• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test2;
2 
3 public class Finally {
4     int a = 0;
5     String s = null;
6     double b = 1.0;
7 
update()8     public void update() {
9         a = s.length();
10         b++;
11     }
12 }
13