Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This noncompliant code example declares a serializable File object in the class Ser.:

Code Block
bgColor#FFcccc
final class Ser implements Serializable { 	
  File f;
  public Ser() throws FileNotFoundException {
    f  = new File("c:\\filepath\\filename");
  }	 
}

...

 

...

Image Modified