active questions tagged scope - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T04:59:46Zhttp://stackoverflow.com/feeds/tag/scopehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/183214/javascript-callback-scope6JavaScript Callback ScopeChris MacDonald2008-10-08T14:56:09Z2009-11-27T17:27:43Z
<p>I'm having some trouble with plain old JavaScript (no frameworks) in referencing my object in a callback function.</p>
<pre><code>function foo(id) {
this.dom = document.getElementById(id);
this.bar = 5;
var self = this;
this.dom.addEventListener("click", self.onclick, false);
}
foo.prototype = {
onclick : function() {
this.bar = 7;
}
};
</code></pre>
<p>Now when I create a new object (after the DOM has loaded, with a span#test)</p>
<pre><code>var x = new foo('test');
</code></pre>
<p>The 'this' inside the onclick function points to the span#test and not the foo object.</p>
<p>How do I get a reference to my foo object inside the onclick function?</p>
http://stackoverflow.com/questions/1804438/jquery-callback-question0JQuery callback questionAndrew2009-11-26T15:48:38Z2009-11-26T15:50:21Z
<p>Hi,</p>
<p>I'm trying to assign a different number to different callback functions in jquery. </p>
<pre><code>for (i=o;i<types.length;i++) {
$('#ajax'+types[i]+'Div').html('Loading...').load('searchAjax.php','new=u',function () { $(this).find('select').change( function() { AjaxDiv(i); } ) } );
}
</code></pre>
<p>Everytime I run this section of code, i is 5 for each call to ajaxDiv because it is calling a global variable. I'm not sure if I can either change the scope of i or if there's a way to print the value in the change function. Any ideas?</p>
<p>Thank you in advance! Happy Thanksgiving!</p>
<p>Andrew</p>
http://stackoverflow.com/questions/1736886/why-wont-this-javascript-using-document-open-and-document-write-work-in-intern2Why won't this JavaScript (using document.open and document.write) work in Internet Explorer or Opera?Bungle2009-11-15T07:30:48Z2009-11-26T01:34:30Z
<p>I desperately need some help on this one.</p>
<p>I've created a <script> that closely parallels, and reproduces the problem of, another more complex <script> that I've written elsewhere.</p>
<p>Here's what it does:</p>
<ul>
<li>creates an <iframe> and inserts in into a <div> on the page</li>
<li>creates and appends a document to that <iframe>, which contains a <script> that defines a few functions (including a callback function and a function that loads an external <script> using AJAX)</li>
<li>the latter external script is just a call to the callback function, which calls a function that creates a document and appends it to the <iframe> it's in; this should effectively overwrite the <script></li>
</ul>
<p>The three files involved are:</p>
<ul>
<li><a href="http://troy.onespot.com/static/document_write/index.html" rel="nofollow">http://troy.onespot.com/static/document_write/index.html</a> (the main page)</li>
<li><a href="http://troy.onespot.com/static/document_write/main.js" rel="nofollow">http://troy.onespot.com/static/document_write/main.js</a> (the first <script> that's loaded)</li>
<li><a href="http://troy.onespot.com/static/document_write/jsonp.js" rel="nofollow">http://troy.onespot.com/static/document_write/jsonp.js</a> (the <script> loaded by jQuery's $.ajax() method)</li>
</ul>
<p>This all works in Firefox, Safari, and Chrome. Where it breaks down is in Internet Explorer and Opera. What happens is that the render() function in main.js executes, and all three alerts are fired, but the document in the <iframe> is not overwritten. I can't tell what document is being created or written to, or if one is at all.</p>
<p>If I add debug code (like console.log(document)) in the beginning of the render() function, the working browsers seem to get a handle on the existing <iframe> document and list the properties included below. Internet Explorer also appears to find a document of some sort. I just can't tell why it's not letting me overwrite it.</p>
<p>Could it be an issue of scope? Maybe I'm using the document.write(), document.open() or document.close() methods improperly, and Firefox and a few other browsers are just letting me get away with it?</p>
<p>One possible clue: if I take the guts of the render() function out (i.e., just put them after load() in main.js), this works fine. That suggests to me that it's not how I'm using document.open(), etc., but that somehow by the time that the callback() function is executed, the document object is not available, or has gone out of scope, or something like that.</p>
<p>This has me totally stumped, and it's for a very important project with an impending deadline. I'm not above a hack or workaround if it gets me out of this jam. Any help or insight would be EXTREMELY appreciated!</p>
<p>console.log()'s listing of the document properties:</p>
<pre>ATTRIBUTE_NODE: 2
CDATA_SECTION_NODE: 4
COMMENT_NODE: 8
DOCUMENT_FRAGMENT_NODE: 11
DOCUMENT_NODE: 9
DOCUMENT_POSITION_CONTAINED_BY: 16
DOCUMENT_POSITION_CONTAINS: 8
DOCUMENT_POSITION_DISCONNECTED: 1
DOCUMENT_POSITION_FOLLOWING: 4
DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32
DOCUMENT_POSITION_PRECEDING: 2
DOCUMENT_TYPE_NODE: 10
ELEMENT_NODE: 1
ENTITY_NODE: 6
ENTITY_REFERENCE_NODE: 5
NOTATION_NODE: 12
PROCESSING_INSTRUCTION_NODE: 7
TEXT_NODE: 3
URL: "http://localhost/projects/test/ajax_loader/document_write/index.html"
activeElement: HTMLBodyElement
addEventListener: function addEventListener() {
adoptNode: function adoptNode() {
alinkColor: ""
all: HTMLCollection
anchors: HTMLCollection
appendChild: function appendChild() {
applets: HTMLCollection
attributes: null
baseURI: "http://localhost/projects/test/ajax_loader/document_write/index.html"
bgColor: ""
body: HTMLBodyElement
captureEvents: function captureEvents() {
characterSet: "UTF-8"
charset: "UTF-8"
childNodes: NodeList
clear: function clear() {
cloneNode: function cloneNode() {
close: function close() {
compareDocumentPosition: function compareDocumentPosition() {
compatMode: "BackCompat"
cookie: "__gads=ID=62bb88ab20ac9451:T=1256683145:S=ALNI_Mbso-nFjAvRzYhCSwhiuaDh84G8CA"
createAttribute: function createAttribute() {
createAttributeNS: function createAttributeNS() {
createCDATASection: function createCDATASection() {
createComment: function createComment() {
createDocumentFragment: function createDocumentFragment() {
createElement: function createElement() {
createElementNS: function createElementNS() {
createEntityReference: function createEntityReference() {
createEvent: function createEvent() {
createExpression: function createExpression() {
createNSResolver: function createNSResolver() {
createNodeIterator: function createNodeIterator() {
createProcessingInstruction: function createProcessingInstruction() {
createRange: function createRange() {
createTextNode: function createTextNode() {
createTreeWalker: function createTreeWalker() {
defaultCharset: "iso-8859-1"
defaultView: DOMWindow
designMode: "off"
dir: ""
dispatchEvent: function dispatchEvent() {
doctype: null
documentElement: HTMLHtmlElement
documentURI: "http://localhost/projects/test/ajax_loader/document_write/index.html"
domain: "localhost"
elementFromPoint: function elementFromPoint() {
embeds: HTMLCollection
evaluate: function evaluate() {
execCommand: function execCommand() {
fgColor: ""
firstChild: HTMLHtmlElement
forms: HTMLCollection
getCSSCanvasContext: function getCSSCanvasContext() {
getElementById: function getElementById() {
getElementsByClassName: function getElementsByClassName() {
getElementsByName: function getElementsByName() {
getElementsByTagName: function getElementsByTagName() {
getElementsByTagNameNS: function getElementsByTagNameNS() {
getOverrideStyle: function getOverrideStyle() {
getSelection: function getSelection() {
hasAttributes: function hasAttributes() {
hasChildNodes: function hasChildNodes() {
hasFocus: function hasFocus() {
height: 150
images: HTMLCollection
implementation: DOMImplementation
importNode: function importNode() {
inputEncoding: "UTF-8"
insertBefore: function insertBefore() {
isDefaultNamespace: function isDefaultNamespace() {
isEqualNode: function isEqualNode() {
isSameNode: function isSameNode() {
isSupported: function isSupported() {
jQuery1258269389622: 2
lastChild: HTMLHtmlElement
lastModified: ""
linkColor: ""
links: HTMLCollection
localName: null
location: Location
lookupNamespaceURI: function lookupNamespaceURI() {
lookupPrefix: function lookupPrefix() {
namespaceURI: null
nextSibling: null
nodeName: "#document"
nodeType: 9
nodeValue: null
normalize: function normalize() {
open: function open() {
ownerDocument: null
parentElement: null
parentNode: null
plugins: HTMLCollection
preferredStylesheetSet: null
prefix: null
previousSibling: null
queryCommandEnabled: function queryCommandEnabled() {
queryCommandIndeterm: function queryCommandIndeterm() {
queryCommandState: function queryCommandState() {
queryCommandSupported: function queryCommandSupported() {
queryCommandValue: function queryCommandValue() {
querySelector: function querySelector() {
querySelectorAll: function querySelectorAll() {
readyState: "complete"
referrer: "http://localhost/projects/test/ajax_loader/document_write/index.html"
releaseEvents: function releaseEvents() {
removeChild: function removeChild() {
removeEventListener: function removeEventListener() {
replaceChild: function replaceChild() {
scripts: HTMLCollection
selectedStylesheetSet: null
styleSheets: StyleSheetList
textContent: null
title: " Page"
vlinkColor: ""
width: 300
write: function write() {
writeln: function writeln() {
xmlEncoding: null
xmlStandalone: false
xmlVersion: null</pre>
http://stackoverflow.com/questions/1798881/javascript-context2JavaScript context Praveen Prasad2009-11-25T18:10:13Z2009-11-25T21:03:38Z
<pre><code>var User = {
Name: "Some Name", Age: 26,
Show: function() { alert("Age= "+this.Age)};
};
function Test(fn) {
fn();
}
Test(User.Show);
</code></pre>
<p>===============</p>
<p>Alert shown by code is "Age= Undefined". I understand as User.Show function is called from inside of Test(), refers 'this' of 'Test()' function rather than 'User' object. My question is if there is any way to solve this problem?</p>
http://stackoverflow.com/questions/1795397/static-used-only-for-limiting-scope1static - used only for limiting scope?chronodekar2009-11-25T08:13:37Z2009-11-25T09:29:00Z
<p>Is the <code>static</code> keyword in C used only for limiting the scope of a variable to a single file? </p>
<p>I need to know if I understood this right. Please assume the following 3 files,</p>
<p>file1.c</p>
<pre><code>int a;
</code></pre>
<p>file2.c</p>
<pre><code>int b;
</code></pre>
<p>file3.c</p>
<pre><code>static int c;
</code></pre>
<p>Now, if the 3 files are compiled together, then the variables "a" & "b" should have a global scope and can be accessed from any of the 3 files. But, variable "c" being static, can only be accessed from file3.c, right?</p>
<p>Does <code>static</code> have any other use in C ? (other than to limit the scope of a variable as shown above?)</p>
http://stackoverflow.com/questions/1794383/why-do-you-have-to-explicitly-specify-scope-with-friendlyid0Why do you have to explicitly specify scope with friendly_id? nfm2009-11-25T03:05:42Z2009-11-25T03:05:42Z
<p>I'm using the friendly_id gem. I also have my routes nested:</p>
<pre><code># config/routes.rb
map.resources :users do |user|
user.resources :events
end
</code></pre>
<p>So I have URLs like <code>/users/nfm/events/birthday-2009</code>.</p>
<p>In my models, I want the event title to be scoped to the username, so that both <code>nfm</code> and <code>mrmagoo</code> can have events <code>birthday-2009</code> without them being slugged.</p>
<pre><code># app/models/event.rb
def Event < ActiveRecord::Base
has_friendly_id :title, :use_slug => true, :scope => :user
belongs_to :user
...
end
</code></pre>
<p>I'm also using <code>has_friendly_id :username</code> in my User model.</p>
<p>However, in my controller, I'm only pulling out events pertinent to the user who is logged in (current_user):</p>
<pre><code>def EventsController < ApplicationController
def show
@event = current_user.events.find(params[:id])
end
...
end
</code></pre>
<p>This doesn't work; I get the error <code>ActiveRecord::RecordNotFound; expected scope but got none</code>.</p>
<pre><code># This works
@event = current_user.events.find(params[:id], :scope => 'nfm')
# This doesn't work, even though User has_friendly_id, so current_user.to_param _should_ return "nfm"
@event = current_user.events.find(params[:id], :scope => current_user)
# But this does work!
@event = current_user.events.find(params[:id], :scope => current_user.to_param)
</code></pre>
<p><em>SO</em>, why do I need to explicitly specify :scope if I'm restricting it to current_user.events anyway? And why does current_user.to_param need to be called explicitly? Can I override this?</p>
http://stackoverflow.com/questions/1792170/closure-scope-javascript-jquery0Closure/scope JavaScript/jQuerymagenta placenta2009-11-24T18:57:48Z2009-11-24T19:09:12Z
<p>Hello all,</p>
<p>I'm trying to group some exisiting top-level functions inside a
closure (to avoid polluting the global namespace) but I'm not quite
getting it to work.</p>
<p>First, all the JS works outside my anonymous function, but once I put
it in the anonymous function I get an error of "crossfade is not
defined". Does anyone see anything completely obvious that I am
missing?</p>
<p>I'm not quite getting why the the setInterval/crossfade works outside
the anonymous function but not inside. Anything inside start() should
be able to see vars/functions outside start() and it should all be
protected in the closure created by the top-level anonymous function?
I'm not trying to access anything <em>within</em> crossfade(), I'm just
trying to execute it.</p>
<pre><code>(function($) {
//vars up here that internal functions can access
//also using some jquery inside here, so using $
function crossfade() {
//body here
}
//other functions
function start() {
//body here
cInterval = setInterval('crossfade()', 5000);
}
})(jQuery);
</code></pre>
http://stackoverflow.com/questions/1782265/issue-with-scope-and-closures-in-javascript0Issue with scope and closures in JavaScriptAndreas Grech2009-11-23T10:29:21Z2009-11-23T12:54:09Z
<p>My question is really more about scope in JavaScript, rather then closures.</p>
<p>Let's take the following code:</p>
<pre><code>var f = function () {
var n = 0;
return function () {
return n++;
};
}();
console.log(f());
console.log(f());
</code></pre>
<p>The above code outputs:</p>
<pre><code>0
1
</code></pre>
<p>As you can see from the above code, <code>f</code> (self-invoked) returns a function, creating a closure of <code>n</code>.</p>
<p><hr></p>
<p>So, it works with an anonymous function; thus, I then tried it with a named function:</p>
<pre><code>var f2 = function () {
return n++;
};
var f = function () {
var n = 0;
return f2;
}();
console.log(f2()); // <= [n is not defined]
</code></pre>
<p>The above code doesn't work, with the error <code>n is not defined</code>. I assume that this is a scoping issue; but I cannot figure why exactly; </p>
<p>Why is it that the scope is the same with an anonymous, inner function but does not work with a named, outer function?</p>
<p>Also, in the second example, am I creating a closure?</p>
http://stackoverflow.com/questions/1781780/php-variable-scope1PHP Variable ScopeDylan2009-11-23T08:28:05Z2009-11-23T08:33:05Z
<p>Is there a way to declare a variable so it is available in all functions. Basically I want to call: Global $varName; automatically for every function. And no, I can't use a constant.</p>
<p>I don't think its possible but wanted to ask anyway. Thanks! :D</p>
http://stackoverflow.com/questions/1766711/c-enum-declaration-inside-a-scope-that-is-a-parameter-of-a-macro0[C++] Enum declaration inside a scope that is a parameter of a macro.Jonathan2009-11-19T21:30:34Z2009-11-20T00:51:58Z
<p>Hi,</p>
<p>I am trying to create a macro that takes a scope as a parameter.<br>
I know, it is probably not a good thing etc etc.<br>
I was trying this and got the problem that preprocessor looks for commas and parentheses... the problem is with enum. </p>
<p>How would I declare a enum inside a scope that is a parameter of a macro? </p>
<p>when the compiler see the comma between enum itens, it takes it as a separator. </p>
<p>If you are curious to know why I entered into this, is because I need to register my namespaces and classes, for namespaces I need to know when they are closed, so I was thinking to create a macro that initially calls a static function that register the namespace, encapsulate its contents and finally call a static function that removes the namespace from the registry.<br>
With a macro it would be easier for the coder to do this and make sure he doesn't forget to remove the namespace in the end of the bracket. </p>
<p>Thanks,<br>
Joe</p>
<p>EDIT:</p>
<p>I want a macro that accepts a scope as parameters: </p>
<pre><code>#define MYMACRO(unkownscope) unknownscope
class MYMACRO({
// please, don't take this code seriously, it is just an example so you can understand my question
});
</code></pre>
<p>now, if I try:</p>
<pre><code>#define MYMACRO(unkownscope) unknownscope
class MYMACRO({
enum {
anything = 1,
everything = 2
};
});
</code></pre>
<p>it won't compile because of the comma inside the enum, because the compiler thinks it is a separator of the macro. It doesn't happen with commas inside parentheses, example:</p>
<pre><code> int a(){
int x = anyfunction(1, 2);
}
</code></pre>
<p>would compile normally because the comma is inside a double parentheses.</p>
<p>Sorry for not being able to explain earlier... my english is not that good and the words just keep skipping me =[</p>
<p>Ty for the answers!<br>
Joe</p>
http://stackoverflow.com/questions/1765677/python-nested-classes-scope2Python nested classes scope Avi2009-11-19T18:53:05Z2009-11-19T19:58:41Z
<p>Im trying to understand scope in nested classes in python. Here is my example code :</p>
<pre><code>class OuterClass:
outer_var = 1
class InnerClass:
inner_var = outer_var
</code></pre>
<p>The creation of class does not complete and I get the error :</p>
<pre><code><type 'exceptions.NameError'>: name 'outer_var' is not defined
</code></pre>
<p>trying <code>inner_var = Outerclass.outer_var</code> doesnt work
I get <code><type 'exceptions.NameError'>: name 'OuterClass' is not defined</code></p>
<p>I am trying to access the static <code>outer_var</code> from InnerClass</p>
<p>Is there a way to do this ?
Thanks.</p>
http://stackoverflow.com/questions/1455339/flash-as3-getting-this-error-access-of-undefined-property-basic-scope-help-ne0Flash AS3: Getting this error: Access of undefined property - basic scope help needed :(Leon Gaban2009-09-21T16:10:35Z2009-11-18T17:07:59Z
<p>I'm still used to the AS2 style of all code on 1 frame, I'm trying to code AS3 in class files and I'm having a problem with a basic package setup. Scope issues are killing me with trying to learn AS3. Below is my package code, I don't have any other class files, just trying to return a simple trace.</p>
<p>The error I'm getting after I run the code below: <strong>1120: Access of undefined property tc.</strong></p>
<p><hr></p>
<h2>Main Class</h2>
<pre><code>package
{
import src.*;
import flash.display.MovieClip;
// Custom imports to go here
import src.tradeclass.TradeFrame;
public class TraceClass extends MovieClip
{
public var tc:TradeFrame;
public function TraceClass(traceText:String):void
{
// Constructor function
}
}
tc = new TradeFrame("hello");
//TraceClass.TradeFrame("hello");
}
</code></pre>
<p><hr></p>
<h2>Sub Class</h2>
<pre><code>package src.traceclass
{
import src.*;
import flash.display.MovieClip;
public class TradeFrame extends MovieClip
{
public function TradeFrame(traceText:String):void
{
// Constructor function
trace(traceText);
}
}
}
</code></pre>
http://stackoverflow.com/questions/1757161/why-is-this-not-updating-to-refer-to-a-new-object0Why is 'this' not updating to refer to a new object?wheresrhys2009-11-18T16:16:11Z2009-11-18T16:32:57Z
<p>I'm writing an online game which allows a user to progress from one puzzle to the next, and if the user makes mistakes, each puzzle has a start again button to allow the user to start just that puzzle from scratch. A simplified version of the code's structure is below:</p>
<pre><code>function puzzle(generator) {
this.init = function() {
this.generator = generator;
...
this.addListeners();
}
//fires when the puzzle is solved
this.completed = function() {
window.theSequence.next();
}
this.empty = function() {
//get rid of all dom elements, all event listeners, and set all object properties to null;
}
this.addListeners = function() {
$('#startOver').click(function() {
window.thePuzzle.empty();
window.thePuzzle.init();
});
}
this.init();
}
function puzzleSequence(sequenceGenerator) {
this.init = function() {
//load the first puzzle
window.thePuzzle = new puzzle({generating json});
}
this.next = function() {
//destroy the last puzzle and create a new one
window.thePuzzle.empty();
window.thePuzzle = new puzzle({2nd generating json});
}
}
window.theSequence = new puzzleSequence({a sequence generator JSON});
</code></pre>
<p>The problem I have is that if the user has progressed to the second puzzle, if they click start over it loads the first puzzle rather than the second. After a bit of debugging I've worked out that 'this', when used in methods by the second puzzle, for some reason still holds a reference to the first puzzle, but 'window.thePuzzle' - which should be the same as this - correctly refers to the second puzzle.</p>
<p>Why is 'this' persisting in referrring to the first one?</p>
<p>Let me know if you need more code samples</p>
http://stackoverflow.com/questions/1739800/variables-set-during-getjson-function-only-accessible-within-function1Variables set during $.getJSON function only accessible within functionMega Matt2009-11-16T02:49:47Z2009-11-18T08:06:13Z
<p>This may be more of a scoping question. I'm trying to set a JSON object within a $.getJSON function, but I need to be able to use that object outside of the callback.</p>
<pre><code>var jsonIssues = {}; // declare json variable
$.getJSON("url", function(data) {
jsonIssues = data.Issues;
});
// jsonIssues not accessible here
</code></pre>
<p>A similar question like this one was asked in another post, and the consensus was that anything I need to do with the JSON objects needs to be done within the callback function, and cannot be accessed anywhere else. Is there really no way that I can continue to access/manipulate that JSON object outside of the $.getJSON callback? What about returning the variable, or setting a global?</p>
<p>I'd appreciate any help. This just doesn't seem right...</p>
<p><strong>UPDATE:</strong></p>
<p>Tried setting the $.ajax() async setting to false, and running through the same code, with no luck. Code I tried is below:</p>
<pre><code>var jsonIssues = {}; // declare json variable
$.ajax({ async: false });
$.getJSON("url", function(data) {
jsonIssues = data.Issues;
});
// jsonIssues still not accessible here
</code></pre>
<p>Also, I've had a couple responses that a global variable should work fine. I should clarify that all of this code is within <code>$(document).ready(function() {</code>. To set a global variable, should I just declare it before the document.ready? As such:</p>
<pre><code>var jsonIssues = {};
$(document).ready(function() {
var jsonIssues = {}; // declare json variable
$.getJSON("url", function(data) {
jsonIssues = data.Issues;
});
// now accessible?
}
</code></pre>
<p>I was under the impression that that a variable declared within document.ready should be "globally" accessible and modifiable within any part of document.ready, including subfunctions like the $.getJSON callback function. I may need to read up on javascript variable scoping, but there doesn't seem to be an easy to achieve what I'm going for. Thanks for all the responses.</p>
<p><strong>UPDATE #2:</strong>
Per comments given to answers below, I did use $.ajax <em>instead of</em> .getJSON, and achieved the results I wanted. Code is below:</p>
<pre><code>var jsonIssues = {};
$.ajax({
url: "url",
async: false,
dataType: 'json',
success: function(data) {
jsonIssues = data.Issues;
}
});
// jsonIssues accessible here -- good!!
</code></pre>
<p>Couple follow-up comments to my answers (and I appreciate them all). My purpose in doing this is to load a JSON object initially with a list of Issues that the user can then remove from, and save off. But this is done via subsequent interactions on the page, and I cannot foresee what the user will want to do with the JSON object <em>within</em> the callback. Hence the need to make it accessible once the callback complete. Does anyone see a flaw in my logic here? Seriously, because there may be something I'm not seeing...</p>
<p>Also, I was reading through the .ajax() jQuery documentation, and it says that setting async to false "Loads data synchronously. Blocks the browser while the requests is active. It is better to block user interaction by other means when synchronization is necessary."</p>
<p>Does anyone have an idea how I should be blocking user interaction while this is going on? Why is it such a concern? Thanks again for all the responses.</p>
http://stackoverflow.com/questions/1753232/python-functions-can-be-given-new-attributes-from-outside-the-scope2Python functions can be given new attributes from outside the scope?behindthefall2009-11-18T02:27:05Z2009-11-18T05:44:07Z
<p>I didn't know you could do this:</p>
<pre><code>def tom():
print "tom's locals: ", locals()
def dick(z):
print "z.__name__ = ", z.__name__
z.guest = "Harry"
print "z.guest = ", z.guest
print "dick's locals: ", locals()
tom() #>>> tom's locals: {}
#print tom.guest #AttributeError: 'function' object has no attribute 'guest'
print "tom's dir:", dir(tom) # no 'guest' entry
dick( tom) #>>> z.__name__ = tom
#>>> z.guest = Harry
#>>> dick's locals: {'z': <function tom at 0x02819F30>}
tom() #>>> tom's locals: {}
#print dick.guest #AttributeError: 'function' object has no attribute 'guest'
print tom.guest #>>> Harry
print "tom's dir:", dir(tom) # 'guest' entry appears
</code></pre>
<p>Function tom() has no locals. Function dick() knows where tom() lives and puts up Harry as 'guest' over at tom()'s place. harry doesn't appear as a local at tom()'s place, but if you ask for tom's guest, harry answers. harry is a new attribute at tom().</p>
<p>UPDATE: From outside tom(), you can say "print dir(tom)" and see the the tom-object's dictionary. (You can do it from <strong>inside</strong> tom(), too. So tom could find out he had a new lodger, harry, going under the name of 'guest'.)</p>
<p>So, attributes can be added to a function's namespace from outside the function? Is that often done? Is it acceptable practice? Is it recommended in some situations? Is it actually vital at times? (Is it Pythonic?)</p>
<p>UPDATE: Title now says 'attributes'; it used to say 'variables'. Here's a <a href="http://www.python.org/dev/peps/pep-0232/" rel="nofollow">PEP about Function Attributes</a>.</p>
http://stackoverflow.com/questions/1747254/c-style-variable-initialization-in-php2C-style Variable initialization in PHPunknown (google)2009-11-17T07:56:48Z2009-11-17T09:38:40Z
<p>Is there such a thing as local, private, static and public variables in PHP? If so, can you give samples of each and how their scope is demonstrated inside and outside the class and inside functions?</p>
http://stackoverflow.com/questions/1745790/spring-singleton-session-scopes-and-concurrency3Spring: Singleton/session scopes and concurrencyAlex S2009-11-17T00:21:52Z2009-11-17T02:16:23Z
<p>Does singleton/session scopes of Spring beans require that access to all its fields must be synchronized? Say through "synchronized" keyword or using some classes from package "java.util.concurrent".</p>
<p>As example, is this code not thread safe? (copy/pased from <a href="http://vraptor.caelum.com.br/documentation/vraptor3-ten-minutes-guide/" rel="nofollow">here</a>):</p>
<pre><code>@Component
@SessionScoped
public class ShoppingCart {
private List<Product> items = new ArrayList<Product>();
public List<Product> getAllItems() {
return items;
}
public void addItem(Product item) {
items.add(item);
}
}
</code></pre>
http://stackoverflow.com/questions/370357/python-variable-scope-question17Python variable scope questionbrainfsck2008-12-16T03:06:52Z2009-11-16T22:12:19Z
<p>Hi,</p>
<p>I've been programming for many years, and recently started learning Python. The following code works as expected in both python 2.5 and 3.0 (on OS X if that matters):</p>
<pre><code>a, b, c = (1, 2, 3)
print(a, b, c)
def test():
print(a)
print(b)
print(c) # (A)
#c+=1 # (B)
test()
</code></pre>
<p>However, when I uncomment line <b>(B)</b>, I get an <i>UnboundLocalError: 'c' not assigned</i> at line <b>(A)</b>. The values of <i>a</i> and <i>b</i> are printed correctly. This has me completely baffled for two reasons:</p>
<p>1) Why is there an runtime error thrown at line <b>(A)</b> because of a later statement on line <b>(B)</b>?</p>
<p>2) Why are variables <i>a</i> and <i>b</i> printed as expected, while <i>c</i> raises an error?</p>
<p>The only explanation I can come up with is that a <b>local</b> variable <i>c</i> is created by the assignment <i>c+=1</i>, which takes precedent over the "global" variable <i>c</i> even before the local variable is created. Of course, it doesn't make sense for a variable to "steal" scope before it exists.</p>
<p>Could someone please explain this behavior?
Thank you very much,
brainfsck</p>
http://stackoverflow.com/questions/321000/dynamic-scoping-why7Dynamic Scoping - Why?Claudiu2008-11-26T15:04:01Z2009-11-16T17:18:24Z
<p>I've learned that <a href="http://en.wikipedia.org/wiki/Static_scoping#Static_scoping_.28also_known_as_lexical_scoping.29" rel="nofollow">static scoping</a> is the only sane way to do things, and that <a href="http://en.wikipedia.org/wiki/Static_scoping#Dynamic_scoping" rel="nofollow">dynamic scoping</a> is the tool of the devil, and results only from poor implementations of interpreters/compilers. </p>
<p>Then I saw this snippet from a <a href="http://community.schemewiki.org/?scheme-vs-common-lisp" rel="nofollow">Common Lisp vs. Scheme</a> article:</p>
<pre>
Both Lexically and Dynamically Lexical scope only, per the standard.
scoped special vars. Common Dynamically scoped vars are provided
Lisp just wins on this point. by some implementations as an extension
but code using them is not portable.
(I have heard the arguments about whether Dynamic scoping
is or is not a Bad Idea in the first place. I don't care.
I'm just noting that you can do things with it that you
can't easily do without it.)
</pre>
<p>Why does Common Lisp "just win on this point"? What things are easier to do with dynamic scoping? I really can't justify ever needing it / seeing it as a good thing.</p>
http://stackoverflow.com/questions/1741204/scope-with-a-self-invoking-function-in-javascript2Scope with a self-invoking function in JavascriptAndreas Grech2009-11-16T10:03:40Z2009-11-16T11:02:20Z
<p>Take below code iterates over 6 input buttons and attaches an <code>onclick</code> event to every button that alerts the index number of the respective iteration:</p>
<pre><code>for (var i = 1; i < 6; ++i) {
var but = document.getElementById('b_' + i);
(function (el) {
var num = i;
but.onclick = function () {
alert(num);
};
})(but);
}
</code></pre>
<p>As you can see, in each iteration there is a self-invoking function that creates a scope to store the iteration index in that scope.</p>
<p>I have always used this type of pattern to attach an event that is dependant on a variable that is changed during iterations.</p>
<p><hr></p>
<p>Can anyone explain to me exactly why the above works, and how the <code>num</code> variable is captured in the scope?</p>
<p>Also, is the self-invoking function used above called a <code>closure</code> ?</p>
http://stackoverflow.com/questions/1738260/enum-scoping-issues1Enum scoping issues ThingTwo2009-11-15T17:56:17Z2009-11-15T19:09:57Z
<p>I try to keep things as local as possible, so I put enums at class scope, even if they are shared between two classes (I put it in the class that "goes better" with it.) This has worked out great, but I recently ran into an issue where a circular dependency will occur if I put the enum at class scope.</p>
<p>The enum is going to be a constructor argument for multiple classes, and the class it is in (and the class that makes the most sense for it to be in) includes those classes. Thus, it isn't possible to use the enum as a constructor argument for the classes included because it will result in a circular dependency.</p>
<p>Would it be better to just put this enum in its own header file, and if so, should I put all of the enums in the header file to be consistent? Are there any other solutions to this issue (that are logical)?</p>
http://stackoverflow.com/questions/1736560/c-prototype-scope2C Prototype scopeGanesh Gopalasubramanian2009-11-15T04:28:05Z2009-11-15T18:34:15Z
<p>I learnt that </p>
<blockquote>
<p>the type specifier that declares the
identifier in the list of parameter
declarations in a function prototype
(not part of a function definition),
the identifier has function prototype
scope, which terminates at the end of
the function declarator.</p>
</blockquote>
<p>Please see the C program mentioned below.</p>
<pre><code>void fn (struct st {int a;} a, struct st b) ;
struct st obj ;
</code></pre>
<p>Compilers promptly issues an error as 'obj' size is unknown (or) struct st is not a 'type'. That's right! the declaration of the structure 'struct st' ends at the prototype declaration. </p>
<p>I believe prototype had this limit because we can use some variable names in the prototype declarations too. These names may conflict with the variables in the same scope (as that of function prototype). Like below.</p>
<pre><code>void fn (int a) ;
int a ;
</code></pre>
<p>So, to allow the above declarations the scope of prototype is limited. (Correct me if I am wrong)</p>
<p>But, for a prototype declaration, parameter variable name are of no use. So, why is it being 'narrowly scoped'? What is the significance of having the parameter variable name? What is the language designer's (or) specification's thought on this?</p>
http://stackoverflow.com/questions/1737634/c-comma-operator5C comma operatorGanesh Gopalasubramanian2009-11-15T14:21:00Z2009-11-15T14:56:01Z
<p>Why is the expression specified inside a comma operator (such as the example below) not considered a constant expression?</p>
<p>For example,</p>
<pre><code>int a = (10,20) ;
</code></pre>
<p>when given in global scope yields an error "initializer is not a constant", though both the expressions separated by a comma operator are constants (constant expressions). Why is the entire expression is not treated as a constant expression? For clarification I have read <a href="http://stackoverflow.com/questions/52550/what-does-the-operator-do-in-c"><em>What does the ‘,’ operator do in C?</em></a> and <a href="http://stackoverflow.com/questions/1613230/uses-of-c-comma-operator"><em>Uses of C comma operator</em></a>. They have not dealt this aspect of comma operator.</p>
http://stackoverflow.com/questions/1727240/preventing-data-from-being-freed-when-vector-goes-out-of-scope1preventing data from being freed when vector goes out of scopespirov2009-11-13T05:08:16Z2009-11-13T20:32:46Z
<p>Is there a way to transfer ownership of the data contained in a std::vector (pointed to by, say T*data) into another construct, preventing having "data" become a dangling pointer after the vector goes out of scope?</p>
<p>EDIT: I DON'T WANT TO COPY THE DATA (which would be an easy but ineffective solution).</p>
<p>Specifically, I'd like to have something like:</p>
<pre><code>template<typename T>
T* transfer_ownership(vector<T>&v){
T*data=&v[0];
v.clear();
...//<--I'd like to make v's capacity 0 without freeing data
}
int main(){
T*data=NULL;
{
vector<double>v;
...//grow v dynamically
data=transfer_ownership<double>(v);
}
...//do something useful with data (user responsible for freeing it later)
// for example mxSetData(mxArray*A,double*data) from matlab's C interface
}
</code></pre>
<p>The only thing that comes to my mind to emulate this is: </p>
<pre><code>{
vector<double>*v=new vector<double>();
//grow *v...
data=(*v)[0];
}
</code></pre>
<p>and then data will later either be freed or (in my case) used as mxSetData(mxArray*A,double*data). However this results in a small memory leak (data struct for handling v's capacity, size, etc... but not the data itself of course).</p>
<p>Is it possible without leaking ?</p>
http://stackoverflow.com/questions/1731529/is-there-a-language-with-subroutines-but-no-local-variables0Is there a language with subroutines but no local variables?Eddie Welker2009-11-13T19:58:21Z2009-11-13T20:00:55Z
<p>I'm wondering if anyone if aware of a language that has support for variables (that could be considered 'global'), and subroutines (functions), but without a concept of parameter passing, local scope, etc. Something where every subroutine has access to every global variable, and only global variables.</p>
http://stackoverflow.com/questions/1728206/c-puzzle-play-with-types9C Puzzle - play with typesGanesh Gopalasubramanian2009-11-13T09:40:53Z2009-11-13T16:09:23Z
<p>Please check the below program.</p>
<pre><code>#include <stdio.h>
struct st
{
int a ;
}
fn ()
{
struct st obj ;
obj.a = 10 ;
return obj ;
}
int main()
{
struct st obj = fn() ;
printf ("%d", obj.a) ;
}
</code></pre>
<p>Following are the questions</p>
<ol>
<li>What is the output of the program? </li>
<li><p>Where is ';' terminating the declaration of 'struct st'?</p>
<p>By ISO IEC 9899 - 1999
specification, declaration should
end with a ';'. </p>
<pre><code> declaration-specifiers init-declarator-listopt ;
</code></pre></li>
<li><p>If the declaration of the 'struct
st' is taken representing only the return type of
the function 'fn', how is it visible
to other functions (main)?</p></li>
</ol>
http://stackoverflow.com/questions/1728563/changing-the-scope-of-an-anonymous-function-on-a-settimeout-causes-a-weird-warnin0changing the scope of an anonymous function on a setTimeout causes a weird warningDimitar Christoff2009-11-13T11:05:54Z2009-11-13T11:36:11Z
<p>this has interested me purely as research and personal development. i have a namespaced set of functions / variables.</p>
<p>within 1 function I need to call another through setTimeout but keeping the scope to 'this'. i am struggling with this a little, can't seem to bind it for when the setTimeout runs. </p>
<pre><code>var foo = {
ads: ["foo","bar"],
timeDelay: 3,
loadAds: function() {
var al = this.ads.length;
if (!al)
return; // no ads
for(var i = 0; i < al; i++) {
setTimeout(function() {
this.scrollAd(this.ads[i]);
}.apply(this), this.timeDelay * 1000);
}
},
scrollAd: function(adBlock) {
console.log(adBlock);
}
};
};
</code></pre>
<p>the .apply(this) DOES change the scope as the console.log outputs the right object back, but it runs the function immediately and then the exception/warning comes up as the callback remains empty:</p>
<pre><code>useless setTimeout call (missing quotes around argument?)
</code></pre>
<p>is there an elegant way of doing this at all? i know i could do </p>
<pre><code>var _this = this;
</code></pre>
<p>and reference <code>_this</code> in the anon callback. for example, in mootools i'd use <code>.bind(this)</code> instead... </p>
<p>and no, as this involves animating, i don't want to use <code>" "</code> around the string as it will need to be eval'd and would impact performance... </p>
http://stackoverflow.com/questions/1723101/ruby-tk-command-binding-scope-issue1Ruby + Tk command binding - scope issue?KTamas2009-11-12T15:35:20Z2009-11-13T09:25:04Z
<p>So I have this app</p>
<pre><code>require 'tk'
class Foo
def my_fancy_function
puts "hello, world!"
end
def initialize
@root = TkRoot.new{title "Hello, world!"}
frame = TkFrame.new
my_fancy_button = TkButton.new(frame) do
text "Press meee"
command {my_fancy_function}
pack
end
frame.pack
Tk.mainloop
end
end
bar = Foo.new
</code></pre>
<p>But if I press the button, I get "NameError: undefined local variable or method `my_fancy_function' for #<TkButton:..."</p>
<p>I'm pretty sure I'm missing something trivial related to scope... how do I bind that command to the button correctly?</p>
<p>Edit: Okay, if I change my <code>my_fancy_button</code> block to parameters, i.e.</p>
<pre><code>my_fancy_button = TkButton.new(frame, :text => "Press meee", :command => proc{my_fancy_function}).pack
</code></pre>
<p>Then it works. But why?</p>
http://stackoverflow.com/questions/1727184/do-stack-based-languages-have-a-concept-of-scope1Do stack-based languages have a concept of scope?Eddie Welker2009-11-13T04:47:58Z2009-11-13T04:53:34Z
<p>Do stack-based languages have a concept of scope? It would seem to me that if function parameters are placed on the stack before the function executes, that they do in an unorthodox sort of way.</p>
<p>Or, I could be trying to impose an abstraction that doesn't quite fit.</p>
http://stackoverflow.com/questions/1726425/adding-elements-to-a-vector-inside-a-c-class-not-being-stored1Adding elements to a vector inside a c++ class not being storedDrew2009-11-13T00:43:37Z2009-11-13T01:56:59Z
<p><b>Edit: My debugger was lying to me. This is all irrelevant</b></p>
<p>Howdy all,</p>
<p>I had a peek at <a href="http://stackoverflow.com/questions/637438/adding-element-to-vector">http://stackoverflow.com/questions/637438/adding-element-to-vector</a>, but it's not helpful for my case.</p>
<p>I'm trying to add an element (custom class LatLng) to another object (Cluster) from a third object (ClusterManager). </p>
<p>When I pass my LatLng to Cluster (last line of ClusterManager.cpp), and jump into Cluster::addLocation, at the end of the function execution gdb says my new LatLng has been added to Cluster, but the moment I jump back into the scope of the highest class, ClusterManager, the new LatLng added to the vector 'locStore' is not present in either runtime or debug. </p>
<p>Any ideas?</p>
<p>DJS.</p>
<p>DE: Xcode 3.2 (Targeted to Debug 10.5)
OS: OSX 10.6
Compiler: GCC 4.2
Arch: x86_64</p>
<p><i>ClusterManager.cpp</i> (where it's all being called from):</p>
<pre><code>void ClusterManager::assignPointsToNearestCluster()
{
//Iterate through the points.
for (int i = 0; i < locationStore.size(); i++)
{
double closestClusterDistance = 100.1;
// Make sure to chuck the shits if we don't find a cluster.
int closestCluster = -1;
int numClusters = clusterStore.size();
// Iterate through the clusters.
for (int j = 0; j < numClusters; j++) {
double thisDistance = locationStore[i].getDistanceToPoint( *(clusterStore[j].getCentroid()) );
// If there's a closer cluster, make note of it.
if (thisDistance < closestClusterDistance) {
closestClusterDistance = thisDistance;
closestCluster = j;
}
}
// Remember the penultiment closest cluster.
this->clusterStore[closestCluster].addLocation( this->locationStore[i] );
}
}
</code></pre>
<p><i>ClusterManager.h</i></p>
<pre><code>#include "Cluster.h"
#include "LatLng.h"
#include <vector>
class ClusterManager{
private:
std::vector<Cluster> clusterStore;
std::vector<LatLng> locationStore;
public:
ClusterManager();
void assignPointsToNearestCluster();
void addLocation(int,double,double);
};
</code></pre>
<p><i>Cluster.h:</i></p>
<pre><code>#include <vector>
#include <string>
#include "LatLng.h"
class Cluster {
private:
std::vector<LatLng> locStore;
LatLng newCentroid;
bool lockCentroid;
int clusterSize;
int clusterID;
public:
Cluster(int,LatLng&);
void addLocation(LatLng&);
LatLng* getCentroid();
};
</code></pre>
<p><i>Cluster.cpp</i></p>
<pre><code>Cluster::Cluster(int newId, LatLng &startPoint)
{
this->clusterID = newId;
this->newCentroid = startPoint;
};
void Cluster::addLocation(LatLng &newLocation)
{
(this->locStore).push_back( newLocation );
};
LatLng* Cluster::getCentroid()
{
return &newCentroid;
};
</code></pre>