thelordoftherings
Programmer
a transient variable cannot be declared as final or static"
What is the logic behind this?
What is the logic behind this?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
public class Bla {
public static final transient int k = 0;
}
public class Transient
{
transient int a;
transient static int b;
transient final int c;
/** */
public Transient (String param)
{
c = 17;
b = 9;
a = 4;
}
}