I'd like to override the behavior of an std function, say std::time. Is it possible to call std::time and have it routed through my custom function?
|
|
|||||||||||||
|
|
|
On some platforms, you can pull this off. In your source code, define the function, i.e.
If you're lucky, the linker will bind your version of As everyone else has posted, this isn't portable behavior. I'm pretty sure it works on Linux. I'm also fairly certain it doesn't work on Windows (linker complains about the conflict). |
||
|
|
|
|
The The only exception is template specializations. You may provide specializations of functions in the |
||
|
|
|
|
Instead of calling it
Then the call to |
|||
|
|
|
|
Not portably. On the understanding that the standard doesn't define what happens, you can usually define whatever symbols and functions you like in namespace std, or link against a library that defines those symbols, or whatever. It's just undefined behaviour. So all you can do is suck it and see, and hope it doesn't break in the next release of your compiler. That said, with most compilers it will probably mostly work, provided that you avoid a one-definition-rule clash with the "real" std::time. This is because most compilers don't actually do anything special with namespace std, and the header files and libraries they use to implement it are not really any different from header files and libraries you could write yourself. Dima is absolutely right, though, that going off-standard like this is a almost always a very bad idea. Maybe if you're stuck in some debugging hell where you basically want to add logging to std::time, but can't, then it's worth thinking about. Otherwise don't go there. If you want to test some code, to see whether it works correctly at various times, then pass that code a parameter (or template parameter) specifying which time function it should call. |
|||
|
|
|
|
This sounds like a very bad idea. Kind of like redefining |
||
|
|
