0
votes
4answers
109 views
[C++] Enum declaration inside a scope that is a parameter of a macro.
Hi,
I am trying to create a macro that takes a scope as a parameter.
I know, it is probably not a good thing etc etc.
I was trying this and got the problem that preprocessor looks …
2
votes
2answers
61 views
Python nested classes scope
Im trying to understand scope in nested classes in python. Here is my example code :
class OuterClass:
outer_var = 1
class InnerClass:
inner_var = outer_var
…
0
votes
2answers
80 views
Why is ‘this’ not updating to refer to a new object?
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 st …
2
votes
7answers
87 views
Python functions can be given new attributes from outside the scope?
I didn't know you could do this:
def tom():
print "tom's locals: ", locals()
def dick(z):
print "z.__name__ = ", z.__name__
z.guest = "Harry"
print "z.guest = ", …
1
vote
4answers
78 views
Variables set during $.getJSON function only accessible within function
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.
var jsonIssu …
3
votes
3answers
58 views
Spring: Singleton/session scopes and concurrency
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 "jav …
5
votes
4answers
166 views
C comma operator
Why is the expression specified inside a comma operator (such as the example below) not considered a constant expression?
For example,
int a = (10,20) ;
when given in global sc …
2
votes
3answers
66 views
C-style Variable initialization in PHP
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 an …
2
votes
3answers
123 views
C Prototype scope
I learnt that
the type specifier that declares the
identifier in the list of parameter
declarations in a function prototype
(not part of a function definition),
the id …
1
vote
4answers
89 views
Enum scoping issues
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 w …
2
votes
4answers
58 views
Scope with a self-invoking function in Javascript
Take below code iterates over 6 input buttons and attaches an onclick event to every button that alerts the index number of the respective iteration:
for (var i = 1; i < 6; ++i …
2
votes
3answers
109 views
Why won’t this JavaScript (using document.open and document.write) work in Internet Explorer or Opera?
I desperately need some help on this one.
I've created a <script> that closely parallels, and reproduces the problem of, another more complex <script> that I've writte …
9
votes
2answers
100 views
C Puzzle - play with types
Please check the below program.
#include <stdio.h>
struct st
{
int a ;
}
fn ()
{
struct st obj ;
obj.a = 10 ;
return obj ;
}
int main()
{
struct st obj = fn() ;
p …
1
vote
4answers
101 views
Adding elements to a vector inside a c++ class not being stored
Edit: My debugger was lying to me. This is all irrelevant
Howdy all,
I had a peek at http://stackoverflow.com/questions/637438/adding-element-to-vector, but it's not helpful for …
1
vote
5answers
127 views
preventing data from being freed when vector goes out of scope
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 a …
