Skip to main content

Static methods: are they still bad considering PHP 5.3 late static binding?


If you search on the reasons why static methods are bad the first thing you find it is because you can't override it when you are unit testing.



So is this still true considering in PHP 5.3 you can do whatever you want with the introduction of static:: ?



Add:



http://sebastian-bergmann.de/archives/883-Stubbing-and-Mocking-Static-Methods.html



Note he explains even how to use singleton without any testing problem:



Source: Tips4allCCNA FINAL EXAM

Comments

  1. If you have a static member function, it could usually be a free function. The usual reaction is then that the coder has opted for a static member function only because of the myth that "everything must be in an object".

    That's why people discourage them.

    And, because it's not a very convincing argument, those people pointed to unit testing instead. Not sure what they'll do now.

    ReplyDelete
  2. Static methods aren't bad in themselves. Sometimes certain operations don't make sense to require a particular object to do. For example, a function like square root would make more sense being static.

    Math::sqrRoot(5);


    rather than having to instantiate a Math 'object' and then call the function.

    $math = new Math();
    $result = $math->sqrRoot(5);

    ReplyDelete
  3. More difficult to test is a reason but not the only one. Static methods provide global access, and global access is bad.

    Of course, you'll find that there's another global access to objects and that's creating one with 'new'. Objects have to be created somewhere so we can't eliminate that (though minimizing it is a good idea). Static methods as global access to a class is bad, unless it is there to replace 'new' through higher level programming:

    $user = new User();
    $user->setPointsTo(100);

    // vs

    $user = User::with100StartingPoints();


    In this case I created code that is more readable while not misusing global access (the 'new' needed to be called anyway).

    Edit: Let me give you an example in the way static methods 'can' be the death of testability (note how in the example above you don't even need to mock the static method but can easily test the new and static method produces the same result). Let's use your logger example:

    class Logger {
    public static function log($text) { // etc }
    }

    class AccessControl {
    public function isAllowed(User $user, $action) {
    // do stuff, determine if $allowed
    if (!$allowed) {
    Logger::log('user X was not allowed to do Y');
    }
    // do stuff
    }
    }


    There is no way we can test this method cleanly because of the global call to Logger::log. It will depend on the correct working of the Logger class.

    ReplyDelete

Post a Comment

Popular posts from this blog

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?

CCNA 1 Final Exam 2011 latest (hot hot hot)

  Hi! I have been posted content of ccna1 final exam (latest and only question.) I will post the answer and insert image on sunday. If you care, please subscribe your email an become a first person have full test content. Subcribe now  Some question  have not content because this question have images content. So that can you wait for me? SUNDAY 1. A user sees the command prompt: Router(config-if)# . What task can be performed at this mode? Reload the device. Perform basic tests. Configure individual interfaces. Configure individual terminal lines. 2. Refer to the exhibit. Host A attempts to establish a TCP/IP session with host C. During this attempt, a frame was captured with the source MAC address 0050.7320.D632 and the destination MAC address 0030.8517.44C4. The packet inside the captured frame has an IP source address 192.168.7.5, and the destination IP address is 192.168.219.24. At which point in the network was this packet captured? leaving host A leaving ATL leaving...