Tagged Questions

9
votes
3answers
202 views

Sequence Points and Method Chaining

The following expression is often used to demonstrate undefined unspecified behaviour: f() + g() If f() and g() both have side effects on some shared object then the behaviour is undefined ...
6
votes
15answers
982 views

Method chaining + inheritance don't play well together?

Consider: // member data omitted for brevity // assume that "setAngle" needs to be implemented separately // in Label and Image, and that Button does need to inherit // Label, rather than, say, ...
2
votes
3answers
120 views

Generalized chaining of non-member functions in C++

I don't know if this can even be achivieable, but given these set of functions\class: float plus1(float x) { return x+1; } float div2(float x) { return x/2.0f; } template <typename T> class ...
2
votes
1answer
177 views

C++: calling a chain of functions at different class inheritance levels

Given: class Foo { public: void Method1(); } class Bar extends Foo { public: Bar* Method2(); } class Baz extends Bar { public: Baz* Method3(); } So, someObject *b = new Baz(); ...
1
vote
5answers
155 views

How to make sure a chained logging statement is atomic?

I have a logging class which has operator<< overloaded. So I can do things like this: oLogger << "Log this" << " and this" << " and " << 10 << endl; ...
0
votes
3answers
303 views

Is operator-> “chained” for pointers? [closed]

Possible Duplicate: Overloading operator -> Hi, I've seen that operator->() is chained (re-applied) after it is evaluated, for example: struct Bar { Bar() : m_str("Hello world!") {} ...
-1
votes
5answers
84 views

indentation for method chaining [closed]

Suppose I've a very long method chaining object.SetA(123).SetB(234).SetC(345) ... what's the best indentation? All compilers supports them? object. SetA(123). SetB(234). SetC(345) ... ...