Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd like to be able to do this in C++ standard compilers:

void DoSomething(Object* object) { }

DoSomething(&Object())

With the default address operator, it'll save that constructed object to a register and then overwrite it in DoSomething()... Would be really nice to do this in one line for all objects (except base types where you can't override them).

So here's what I have:

class Object
{
    public:
        Object* operator&(Object object) { return &object; }
};

Which will obviously just be a recurring loop without being able to specify I want the basic & operator, not the overriden one. It's also not being called when I call DoSomething(&Object()). Is this possible? It would make initializing complex types WAY easier so it's kind of important.

share|improve this question
1  
That would be an atrocious thing to do! Why would it make anything easier? – K-ballo Jan 5 at 20:23
1  
Wouldn't that return an address to a temporary? Sehr bad. – Lews Therin Jan 5 at 20:24
Yeah I guess it wouldn't change anything, still going to be a temporary. Oh well I guess initializing a complex object structure on the stack is going to be painful then – Ryan Brown Jan 5 at 20:36

2 Answers

up vote 2 down vote accepted

You can do it like this in C++11:

class Object
{
    public:
};

Object* operator&(Object&& object) { return std::addressof(object); }
Object const* operator&(Object const&& object) { return std::addressof(object); }

All objects:

template<typename T>
T* operator&(T&& x) {
    return std::addressof(x);
}

Please don't do this though. People will hate you for it.

share|improve this answer
@K-ballo Fixed I suppose. Const rvalues references make me squeamish. – Pubby Jan 5 at 20:28
What I really want to do is force & to save a register value to the stack if it's being passed to a function. Doesn't sound like it's possible – Ryan Brown Jan 5 at 20:47

One wouldn't normally do that in C++. There are ways to do it, but is just asking for trouble. Instead, a C++ solution would do:

void DoSomething( Object const& object ){ ... }

But perhaps you would need to be able to operate on non-const objects as well. In that case, you would do:

void DoSomething( Object& object ){ ... } // operate on an lvalue, object with a name
void DoSomething( Object&& object ){ ... } // operate on an rvalue, either temporary or moved object

The solution would greatly differ based on what you are actually trying to do.

share|improve this answer
Apparently, he finds typing "const" just too much of a hassle. See his last comment here. – Benjamin Lindley Jan 5 at 20:34
Well it's redundant and prevents situations where you would want to change it. No I'm not going to force everyone to add 'const' if it's avoidable. – Ryan Brown Jan 5 at 20:50
@Ryan Brown: You seem determined to go against the language, even when the language already has a construct to catch and modify temporaries... I'd say you just picked the wrong language – K-ballo Jan 5 at 20:51
@RyanBrown: "prevents situations where you would want to change it" -- Well, obviously. If you want to change it, then you don't want const. Did you read my last comment on the answer in the other question though? If you want to modify the object without the changes being visible to the caller, take the object by value. No const. Isn't that what you want to do? – Benjamin Lindley Jan 5 at 20:54
1  
@RyanBrown: I wish you would make a post that details why you apparently think neither one of these signatures is appropriate for your WriteLine function: void WriteLine(String8), nor this: void WriteLine(const String8 &) -- Either one of those would allow you to write the call as a single statement: WriteLine(String8("Exception")); -- It's frustrating that you haven't even called into question the appropriateness of the signature WriteLine(String8*) – Benjamin Lindley Jan 5 at 21:38
show 14 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.