VOOZH about

URL: https://www.javacodegeeks.com/author/jacob-zimmerman/page/4

⇱ Jacob Zimmerman, Author at Java Code Geeks - Page 4 of 5


  • Software Development👁 Image
    Jacob ZimmermanMarch 5th, 2015
    0 280

    Law of Demeter and How to Work With It

    The Law of Demeter is an interesting programming principle. It’s the only one I know of that has a near-mathematical…

    Read More »
  • Core Java👁 Image
    Jacob ZimmermanFebruary 26th, 2015
    5 2,420

    Pass Streams Instead of Lists

    Opening disclaimer: this isn’t always a good idea. I’ll present the idea, along with some of the reasons why it’s…

    Read More »
  • Software Development👁 Image
    Jacob ZimmermanFebruary 18th, 2015
    0 117

    Refactoring to Allow Test Doubles

    Sometimes, when you make a class, it directly instantiates an object to use in its methods. For example:    …

    Read More »
  • Software Development👁 Image
    Jacob ZimmermanFebruary 10th, 2015
    0 110

    Plug into the Wall: Interfaces to the Outside World

    Just to be clear, this article isn’t about interfacing with hardware, though what it says does apply a little bit.…

    Read More »
  • Core Java👁 Image
    Jacob ZimmermanFebruary 5th, 2015
    0 414

    Functional Factory Pattern

    Do you want a REALLY quick way to make a Factory object? Then lambdas or other function-passing is what you…

    Read More »
  • Core Java👁 Image
    Jacob ZimmermanJanuary 29th, 2015
    12 102

    How I’d Like Java To Be

    I like Java. I enjoy programming in Java. But after using Python for a while, there are several things I…

    Read More »
  • Software Development👁 Image
    Jacob ZimmermanJanuary 23rd, 2015
    0 154

    About Mixed-Paradigm Languages Such As Java and Python

    Intro There are two really popular programming paradigms (yay, alliteration!) out there: functional programming and object-oriented programming. There is another…

    Read More »
  • Core Java👁 Image
    Jacob ZimmermanJanuary 22nd, 2015
    1 146

    Java 8 Functional Programming: Lazy Instantiation

    Singletons often instantiate themselves lazily, and sometimes, if the object is heavy enough, class fields can be instantiated lazily. Generally,…

    Read More »
  • Core Java👁 Image
    Jacob ZimmermanJanuary 22nd, 2015
    1 598

    Transforming Collections with Decorators

    The Decorator Pattern Ever since first learning the programming design patterns, the decorator pattern has been my favorite. It seemed…

    Read More »
  • «
  • 1
  • 2
  • 3
  • 4
  • 5
  • »
Back to top button
Close