lucky seven
play

Lucky Seven Kleine Sprachnderungen in Java 7 Michael Wiedeking - PowerPoint PPT Presentation

Lucky Seven Kleine Sprachnderungen in Java 7 Michael Wiedeking MATHEMA Software GmbH Agenda Things we wont talk about Things that may come Q & A Herbstcampus 2009 Java 7 Things we wont talk about Java Modules


  1. Lucky Seven Kleine Sprachänderungen in Java 7 Michael Wiedeking MATHEMA Software GmbH

  2. Agenda • Things we won’t talk about • Things that may come • Q & A Herbstcampus 2009 – Java 7

  3. Things we won’t talk about • Java Modules • Annotations of Types • Sorry, no Closures Herbstcampus 2009 – Java 7

  4. But: Remember Galadriel’s Mirror A basin filled with water in which one may see visions of the past, present and future, appearing in The Lord of the Rings. Galadriel, an Elf ruler of Lothlórien, invites the story's hero, Frodo Baggins, to look into it. Galadriel cannot predict what the mirror will show and does not guarantee that its visions will come to pass. Herbstcampus 2009 – Java 7

  5. Fun with Java – Integer Literals Multiples of 37 int[ ] table = { 000, 037, 074, 111, 148, 185, 222, 259, 296, 333, 370 }; Herbstcampus 2009 – Java 7

  6. Integer Literals • Before • int i = 0xCAFE; • int l = 0xBABEL; • After • int i = 0xCAFE_BABE; • int j = 0b0110_1100_0111_0101; • long l = 123_456_789_012L; • byte b = 0xFFu; Herbstcampus 2009 – Java 7

  7. Indexing • Before List<String> list = …; String firstElement = list.get(0); Map<Integer, String> map = new HashMap<>(); map.put(Integer.valueOf(1), "One”); • After List<String> list = …; String firstElement = list[0]; Map<Integer, String> map = new HashMap<>(); map[Integer.valueOf(1)] = "One"; Herbstcampus 2009 – Java 7

  8. Indexing // New superinterfaces to indicate syntax? interface GettableFromInt<E> { E get(int); } interface Gettable<V> { V get(Object); } interface Settable<E> { E set(int, E); } interface Puttable<K, V> { V put(K, V); } Herbstcampus 2009 – Java 7

  9. Indexing java.util.List<E> extends GettableFromInt<E>, Settable<E>, … java.util.Map<K, V> extends Gettable<V>, Puttable(K, V), … Herbstcampus 2009 – Java 7

  10. Collection Literals • Before List<String> list = Collections.asList(new String[ ] {"a", "b", "c”}); • After List<String> list = ["a", "b", "c"]; String firstElement = list[0]; Map<Integer, String> map = {1 : "One"}; Herbstcampus 2009 – Java 7

  11. Better Diagnostics • Before interface List<E> {} class Test { <T> void merge(List<T> l1, List<T> l2) {} void test(List<? extends Test> list) { merge(list, list); } } Test.java:6: <T>merge(List<T>,List<T>) in Test cannot be applied to (List<capture#339 of ? extends Test>,List<capture#768 of ? extends Test>) merge(list, list); ^ 1 error Herbstcampus 2009 – Java 7

  12. Better Diagnostics • After Test.java:6: method merge in class Test cannot be applied to given types merge(list, list); ^ required: List<T>,List<T> found: List<CAP#1>,List<CAP#2> where T is a type-variable: T extends Object declared in method <T>merge(List<T>,List<T>) where CAP#1,CAP#2 are fresh type-variables: CAP#1 extends Test from capture of ? extends Test CAP#2 ex1 error Herbstcampus 2009 – Java 7

  13. Type Literals > Before Type type = String.class > After Type<List<String>> x = List<String>.class; Herbstcampus 2009 – Java 7

  14. Type Inference (1/2) > Before Map<String, List<String>> anagrams = new HashMap<String, List<String>>(); > After Map<String, List<String>> anagrams = new HashMap<>(); Herbstcampus 2009 – Java 7

  15. Type Inference (2/2) > Before timeWaitsFor(Collections.<Man>emptySet()); > After timeWaitsFor(Collections.emptySet()); Herbstcampus 2009 – Java 7

  16. Automatic Resource Block Management > Before try { InputStream in = … OutputStream out = … ... // Perform action with in and out } catch (Exception e) { in.close(); out.close(); } Herbstcampus 2009 – Java 7

  17. Automatic Resource Block Management > Before try { … } catch (Exception e) { if (in != null) { in.close(); } if (out != null) { out.close(); } } Herbstcampus 2009 – Java 7

  18. Automatic Resource Block Management > Before if (in != null) { try { in.close(); } catch (IOException ioe) { // ??? } } if (out != null) { // … out …; } Herbstcampus 2009 – Java 7

  19. Automatic Resource Block Management > After // Start a block using two resources, which will // automatically be cleaned up when the block // exits scope do (InputStream in = …; OutputStream out = …) { ... // Perform action with in and out } Herbstcampus 2009 – Java 7

  20. Language Level XML Support > Before – / – > After elt.appendChild( <muppet> <name>Kermit</name> </muppet> ); Herbstcampus 2009 – Java 7

  21. JavaBean Property Support • Before private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } • After public property String name; a->Name = b->Name; Herbstcampus 2009 – Java 7

  22. Operator Overloading > Before BigDecimal a = new BigDecimal(“123…890“); BigDecimal b = … BigDecimal c = … a = a.mul(b).add(c); > After BigDecimal a = … BigDecimal b = … BigDecimal c = … b = a * b + c; Herbstcampus 2009 – Java 7

  23. Strings in switch Statement • Before static boolean booleanFromString(String s) { if (s.equals("true")) { return true; } else if (s.equals("false")) { return false; } else { throw new IllegalArgumentException(s); } } Herbstcampus 2009 – Java 7

  24. Strings in switch Statement • After static boolean booleanFromString(String s) { switch(s) { case "true": return true; case "false": return false; default: throw new IllegalArgumentException(s); } } Herbstcampus 2009 – Java 7

  25. Comparisons for Enums > Before – / – > After boolean isRoyalty(Rank r) { return r >= Rank.JACK && r != Rank.ACE; } Herbstcampus 2009 – Java 7

  26. Chained Invocation • Before Factory factory = new Factory(); factory.setSomething(something); factory.setOther(other); Thing thing = factory.result(); • After class Factory { void setSomething(Something something) { ... } void setOther(Other other) { ... } Thing result() { ... } } Thing thing = new Factory() .setSomething(something) .setOther(other) .result(); Herbstcampus 2009 – Java 7

  27. Extension Methods > Before – / – > After import static java.util.Collections.sort; List<String> list = ...; list.sort(); // looks like call to List.sort(), but really is call to static method Collections.sort(). Herbstcampus 2009 – Java 7

  28. Enhanced Null Handling > Before public String getPostcode(Person person) { if (person != null) { Address address = person.getAddress(); if (address != null) { return address.getPostcode(); } } return null; } Herbstcampus 2009 – Java 7

  29. Enhanced Null Handling > After public String getPostcode(Person person) { return person?.getAddress()?.getPostcode(); } Herbstcampus 2009 – Java 7

  30. Do you know what this might be? ?: Herbstcampus 2009 – Java 7

  31. Maybe this helps? ?: Herbstcampus 2009 – Java 7

  32. Do you know this man? Herbstcampus 2009 – Java 7

  33. Null Safe Operator (Elvis-Operator) • Before String s = returnImagePathOrNull(id); if (s == null) { s = “ghost.gif”; } • After String s = returnImagePathOrNull(id) ?: “ghost.gif”; Herbstcampus 2009 – Java 7

  34. Enhanced Null Handling > Before String str = getStringMayBeNull(); str = (str == null ? "" : str); > After String str = getStringMayBeNull() ?: ""; Herbstcampus 2009 – Java 7

  35. Improved catch Clause > Before try { return clazz.newInstance(); } catch (InstantiationException e) { throw new AssertionError(e); } catch (IllegalAccessException e) { throw new AssertionError(e); } Herbstcampus 2009 – Java 7

  36. Improved catch Clause > After try { return clazz.newInstance(); } catch (InstantiationException | IllegalAccessException e) { throw new AssertionError(e); } Herbstcampus 2009 – Java 7

  37. Improved catch Clause > After try { doable.doIt(); } catch (final Throwable ex) { logger.log(ex); // surrounding method can declare only // checked Exceptions thrown by doIt() throw ex; } Herbstcampus 2009 – Java 7

  38. Types and Generics • Reified Generics NO • Type Literals NO • JSR 308 Annotations on Java Types YES • Type Inference YES Herbstcampus 2009 – Java 7

  39. Language Proposals • Closures NO • Automatic Resource Management Blocks NO • Language level XML support NO • JavaBean property support NO Herbstcampus 2009 – Java 7

  40. Miscellaneous Language • BigDecimal operator support NO • Strings in switch statements HMM • Comparisons for Enums HMM • Chained invocations NO? • Extension methods NO? • Improved catch YES • Null-safe handling YES Herbstcampus 2009 – Java 7

  41. Thank you! Q & A Herbstcampus 2009 – Java 7

  42. Vielen Dank! Michael Wiedeking MATHEMA Software GmbH

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend