最終更新:2019-06-08 (土) 23:58:15 (1783d)  

メソッドチェーン
Top / メソッドチェーン

Method chaining

jQuery

$("DIV.testClass").css("color","red");

C♯

Object.DoSomething().DoSomethingElse().DoAnotherThing();

PHP

$object->do()->something()->else();

Ruby

puts 'hello!'.length

関連