Tagged Questions
10
votes
4answers
1k views
Local variables with Delegates
This is clearly not appears like it wouldn't be a best practice, but can someone explain why or how this works. Or recommend a good book to learn more.
//The constructor
public Page_Index() {
...
3
votes
1answer
299 views
Access private (local) variable inside a closure scope
I'm making a google chrome extension and trying to get reference of a local variable within a closure scope.
// The script model of the target website
// I can't change any code of these
function ...
2
votes
1answer
154 views
How to dynamically define a class method which will refer to a local variable outside?
class C
end
var = "I am a local var outside"
C.class_eval do
def self.a_class_method
puts var
end
# I know, this is not correct, because the 'def' created a new scope;
# I am ...
0
votes
6answers
88 views
How to redesign this PHP code without local variable?
I have such a function:
function get_title($keyword) {
$titles = array(
'p1' => 'Title 1',
'p2' => 'Title 2',
// ... other data
'pm' => 'Some other ...