...
This noncompliant code example declares a serializable File
object in the class Ser
.:
Code Block | ||
---|---|---|
| ||
final class Ser implements Serializable { File f; public Ser() throws FileNotFoundException { f = new File("c:\\filepath\\filename"); } } |
...
...