Tagged Questions
The method-chaining tag has no wiki summary.
26
votes
13answers
1k views
Method chaining - why is it a good practice, or not?
Method chaining is the practice of object methods returning the object itself in order for the result to be called for another method. Like this:
...
16
votes
4answers
795 views
Can a C# method chain be “too long”?
Not in terms of readability, naturally, since you can always arrange the separate methods into separate lines. Rather, is it dangerous, for any reason, to chain an excessively large number of methods ...
11
votes
3answers
14k views
Chaining selectors in jQuery
I'm a guy used to mootools' way of chaining selectors, and I can't seem to find anywhere how to do the same in jQuery.
Suppose I have a select element in the selectObj variable. What I need is to get ...
11
votes
8answers
4k views
JavaScript Object Method Chaining: useful?
So... messing around in JavaScript with an idea that's new to me, having methods of an Object return the Object of which they are methods; this then leads to chainability. My question, then: how can ...
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 ...
8
votes
6answers
375 views
What is the accepted/recommended syntax for Scala code with lots of method-chaining?
In Scala I tend to favour writing large chained expressions over many smaller expressions with val assignments. At my company we've sort of evolved a style for this type of code. Here's a totally ...
8
votes
4answers
2k views
How to do method chaining in Java? o.m1().m2().m3().m4()
I've seen in many Java code notation that after a method we call another, here is an example.
Toast.makeText(text).setGravity(Gravity.TOP, 0, 0).setView(layout).show();
As you see after calling ...
7
votes
3answers
976 views
PHP method chaining?
I am using PHP5, and heard of a new featured in object-oriented approach, called method chaining.
Does any one know what it is?
I want to know how to implement method chaining using PHP5 with ...
7
votes
3answers
798 views
PHP: How to chain method on a newly created object?
I would like to know whether there's a way to chain methods on a newly created object in PHP?
Something like:
class Foo {
public function xyz() { ... return $this; }
}
$my_foo = new ...
6
votes
5answers
274 views
Chaining Extension methods in C#
Is it possible to create an extension method that returns the instance that is invoking the extension method?
I would like to have an extension method for anything that inherits from ...
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, ...
5
votes
5answers
320 views
f# Method Chaining vs |> Pipe Operator
So I have the following code:
// Learn more about F# at http://fsharp.net
open System
open System.Linq
open Microsoft.FSharp.Collections
let a = [1; 2; 3; 4; 54; 9]
let c = a |> List.map(fun(x) ...
5
votes
3answers
690 views
Chaining order in Guava
I'm a bit new to Guava and it's style. I'm definitely digging it, but one thing I keep tripping over is the order of chained methods. Where I seem to have this problem the most is when using compound ...
5
votes
4answers
363 views
What would be considered good examples of implementing the builder pattern when used in the development of a GUI?
I am a complete newbie when it comes to the use of factory classes and methods, patterns, etc - in fact I first learned of them here on Stackoverflow when browsing Java related questions :-)
In ...
5
votes
4answers
114 views
Is there a benefit to storing an object in a variable before calling a method on it?
Example 1:
SomeObject someObject = new SomeObject();
if (someObject.Method())
{
//do stuff
}
//someObject is never used again
vs
Example 2:
if (new SomeObject().Method())
{
//do stuff
}
...
5
votes
4answers
199 views
Method chaining and exceptions in C#
If I have a method chain like the following:
var abc = new ABC();
abc.method1()
.method2()
.methodThrowsException()
.method3()
;
assuming ...
5
votes
4answers
1k views
JavaScript method chaining challenge
(This question is not really restricted to the language so please feel free to submit solution in other languages too.)
I was just wondering if it would be possible to write something like this in ...
5
votes
5answers
812 views
Method chaining + inheritance don’t play well together? (Java)
This question has been asked in a C++ context but I'm curious about Java. The concerns about virtual methods don't apply (I think), but if you have this situation:
abstract class Pet
{
private ...
5
votes
5answers
2k views
Chaining Static Methods in PHP?
Is it possible to chain static methods together using a static class? Say I wanted to do something like this:
$value = TestClass::toValue(5)::add(3)::subtract(2)::add(8)::result();
. . . and ...
4
votes
1answer
100 views
overloading Ruby's […] Array creation shorthand
I've written a library that extends several base Ruby classes with observing wrappers mostly through method aliasing. However, I've hit a roadblock with the Array instantiation shorthand (e.g. @a = ...
4
votes
2answers
118 views
Javascript method chain
I have been trying to find a way to chain these methods together in a similar way to jQuery. here is an example of what I mean:
(function() {
window.foo = function foo( id ) {
if( window ...
4
votes
2answers
135 views
Understanding how the C# compiler deals with chaining linq methods
I'm trying to wrap my head around what the C# compiler does when I'm chaining linq methods, particularly when chaining the same method multiple times.
Simple example: Let's say I'm trying to filter a ...
4
votes
3answers
538 views
Method chaining with value objects
is it acceptable/good-practice to use the method chaining pattern on value objects (like, returning a new object instead of this)? are there cases out there where this solution is implemented ?
I ...
3
votes
5answers
78 views
jQuery: if inside a chain?
I have this
if(noDelay){
$(element).find("." + options.class).remove();
} else {
$(element).find("." + options.class).fadeOut().remove();
}
Is there a way I could avoid repeating the sentence ...
3
votes
5answers
58 views
How do I use the same method when chaining over an object?
var string = function (base) {
return {
add: function (added) {
return base + added;
}
}
}
text = string("robots").add(" are awesome");
console.log(text);
// robots are awesome
...
3
votes
5answers
70 views
How can I chain my method calls?
I have an object:
var mubsisapi = {
step1 : function(){alert("a")},
step2 : function(){alert("b")}
}
$.extend(false, mubsisapi)
mubsisapi.step1().step2();
It is give ...
3
votes
2answers
70 views
Ruby 1.8.7: intercepting chained methods for object
I have a class that is wrapping cells of arbitrary data; sort of a filter. The cells live in a backend datastore. but that should be as transparent as possible.
Writing straightforward accessors is ...
3
votes
2answers
88 views
PHP array references; holding references in an array for later use
I'm trying to hold onto a variable reference for later use.
Not certain this is even possible, but I'm hoping I can initialize an array element, and reference it with a variable. Then, set the value ...
3
votes
1answer
102 views
Elegant way to deal with null references in chained XElement axis methods
Given something like this:
var results = theElement.Element("Blah").Element("Whatever").Elements("Something");
Is there an elegant way to deal with a null Blah or Whatever element so results is ...
3
votes
1answer
153 views
What's the differences between fluent interface and method chaining?
The Question is As Same As the Title. :)
3
votes
5answers
593 views
PHP OOP: Method Chaining
I have the following code,
<?php
class Templater
{
static $params = array();
public static function assign($name, $value)
{
self::$params[] = array($name => $value);
}
...
3
votes
1answer
172 views
Detecting end of method chain in PHP?
I cannot find a simple example about my question above: how can i detect the end of a method chain?
I'm just looked Zend_Db_Select for example but this one is too complex for this simple question i ...
3
votes
5answers
309 views
PHP Method Chains - Reflecting?
Is it possible to reflect upon a chain of method calls to determine at what point you are in the chain of calls?
At the very least, is it possible to discern whether a method is the last call in the ...
3
votes
4answers
629 views
Can Eclipse generate method-chaining setters
I'd like to generate method-chaining setters (setters that return the object being set), like so:
public MyObject setField (Object value) {
this.field = value;
return this;
}
This makes it ...
3
votes
3answers
4k views
Using HtmlTextWriter to Render Server Controls?
I'm writing the RenderContents() method of my ASP.NET server control. The method uses an HtmlTextWriter object to render the output content. For the control I'm writing, using the HtmlTextWriter's ...
2
votes
3answers
102 views
Chaining queries in Play! Framework
is there a way to chain queries in the "Play!" framework instead of manually writing a query ?
Something like:
Model m = Model.where("name","Bill").where("gender","m").first();
I wonder ...
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
2answers
76 views
What is the correct way to chain methods in .Net
In .Net, you can chain methods returning a value or by using a void. Is one of them the "right way"?
So you could say
1)
Foo myFoo = new Foo();
myfoo.Bars =
myBars.DoSomethingCool(x)
...
2
votes
3answers
99 views
PHP method chaining
So i was wondering if there is a way to method chain, when the initial method is a static function. Here is what I mean:
class foo
{
public static function a()
{
...
2
votes
3answers
59 views
Constructors calling other constructors: any performance issues?
In an application where performance is crucial, would there be any noticeable advantage of Scenario 1 (completely separate constructors) vs. Scenario 2 (chain-calling constructors)?
Scenario 1
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();
...
2
votes
1answer
264 views
Problems writing C# method parameter validation that supports fluent interface (call chaining)
I'm trying to write a generic method parameter validation functionality that can be chained (fluent interface) to attach more and more validations/checks like:
public void SomeMethod(User user, ...
2
votes
2answers
198 views
Chaining togther a complex interaction of delegate sequences
This feels quite complicated to ask, and whilst the solution seems simple, the shear mind bogglingness of delegates inside delegates returned from yet more delegates has caused my brain to implode in ...
2
votes
3answers
451 views
Best practice to implement Scala trait which supports method chaining
I want to make a trait which add some property to a class and make it possible to chain methods. Tested in Scala 2.8.1.
trait SomeProperty {
var prop : String = "default"
def setProp(s: ...
2
votes
2answers
86 views
Does chaining in jQuery work with manipulation and effect methods?
I'm trying to do the following method chain:
$(somehtml).insertAfter("#someelement").fadeIn('slow');
What I would like to happen is for the somehtml to be added but with the fadeIn effect.
...
2
votes
2answers
137 views
Test doubles (mocks/stubs) against method chaining or fluent interface syntax
I have code under test that basically looks like this (the specific code isn't important to the question. It is just here for explanatory purposes):
public ICollection<Product> ...
2
votes
1answer
507 views
Silverlight Async Method Chaining (Possible gotchas?)
I am working on a 'proof of concept' Silverlight 4 project and am learning the way of THE ASYNC. I have stopped fighting the urge to implement some pseudo-synchronous smoke and mirrors technique. I ...
2
votes
3answers
439 views
Is jQuery method chaining an example of fluent programming?
I'm somewhat new to JavaScript/jQuery, but when I saw examples of method chaining it struck me as instantly familiar. Other interfaces like LINQ do something similar where the return type of a set of ...
2
votes
3answers
261 views
PHP method chaining benefits?
Still on the PHP-OOP training wheels, this question may belong on failblog.org. =)
What are the benefits of method chaining in PHP?
I'm not sure if this is important, but I'll be calling my method ...
2
votes
6answers
776 views
Is there a nice simple & elegant way to make ICollection more fluent in C#?
Example: I would like to have the Add method of ICollection of a custom collection class to implement method chaining and fluent languages so I can do this:
...