Advertisement
Advertisement

More Related Content

Recently uploaded(20)

Advertisement

Object Oriented Lies

  1. /10@yegor256 1 Объектно- Ориентированное
 Вранье Егор Бугаенко
  2. /10@yegor256 2 до…
  3. /10@yegor256 3
  4. /10@yegor256 4 Spring, Hibernate, POJO, JAX-RS, JAXB, Utils, design patterns, etc.
  5. /10@yegor256 5 object
  6. /10@yegor256 6 f = new File()
  7. /10@yegor256 7 - getters - setters - static methods
  8. /10@yegor256 8 class File { private String path; String getPath() { return this.path; } }
  9. /10@yegor256 9 class File { private String path; void setPath(String p) { this.path = p; } }
  10. /10@yegor256 10 class FileUtils { static String read(File f); }
  11. /10@yegor256 11 class File { private final String path; String content() { // read and return } }
  12. /10@yegor256 12 45+
  13. /10@yegor256 13
Advertisement