What is the scope of the field a in the following code:
public class Example
{
private int a;
public void doSomething()
{
a = 4;
}
public void setA(int value)
{
a = value;
}
}
Remember a variable can't be local to two methods!