Tagged Questions
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
5answers
310 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 ...
1
vote
4answers
97 views
Calling multiple methods in Java
I found a new way of calling multiple methods in Java and I don't really understands what's happening behind:
public class NutritionFacts {
private final int servingSize;
private final int servings;
...
1
vote
1answer
546 views
Ruby - chaining methods and returning array
I have some methods for a class which return arrays like ["1", "3", "2", "6", "2"]. It is ok that these are string arrays, not numeric. I have another method that takes an array, and turns it into a ...
1
vote
1answer
379 views
Break method chaining in php
I am using method chaining for my class structure.
So my problem is that , how could i break my chain when error occurred in some function.
Below is my code:
<?php
class demo
{
...
0
votes
2answers
65 views
How to invoke a method statically?
<?php
class Popular
{
public static function getVideo()
{
return $this->parsing();
}
}
class Video
extends Popular
{
public static function parsing()
{
...