Scope is an enclosing context where values and expressions are associated. Use this tag for questions about different types of scope as well for questions where scope may be unclear.
0
votes
1answer
26 views
Locally declared object's internal memory intact outside scope?
The function f1 creates an instance of foo and sets foo.ptr[0] = 2.
#include <iostream>
using namespace std;
class foo {
public:
int *ptr;
inline foo(int a) {
...
0
votes
2answers
44 views
Passing variable to another view: best practice
I've got a form in a view, for example say:
form.xhtml
<h:form>
<h:panelGrid columns="2">
<h:outputLabel value="Name" />
<h:inputText value="#{bean.name}" ...
0
votes
1answer
32 views
AngularJS Directive and Isolate Scope
I am trying to understand how to pass data through my directive so that I can bind it at the view level. I believe I understand the separation of controller scope vs. the directive isolate scope but I ...
1
vote
4answers
29 views
Explain this Uncaught TypeError: Property 'x' of object [object Object] is not a function
Can someone please explain why I get the results I do in each of the following situations? I wish to understand why the outcomes are what they are regarding how JavaScript works with scope, if this is ...
0
votes
1answer
13 views
how to maintain application scope in Tomcat clustering?
I have configured the load balancing and the Clustering with Tomcat 6 in multiple machines and my Java application is deployed in all machines.
This works fine for me to maintain and to share the ...
0
votes
2answers
14 views
Spring Beans Scope - taking into account Controllers \ Services \ Repositories
I'm having 1 @Controller bean in my project
and 2 @Service beans that this controller calls.
the services using 2 different @Repository beans for persisting.
My question is :
my server is about to ...
0
votes
0answers
8 views
AST parsing, detect current scope
When parsing AST with visitor, how could visitor detect when scope changes? For example, when we are in Class node, we create Class scope, but how to detect when we leaving a class node, to close the ...
1
vote
1answer
34 views
how to pass a variable to lm within a function in R
Here is a (non)working example of how I would like to do things. The restriction is that all this has to happen within a function and that K should not be appended to x. What's the right way to do ...
1
vote
1answer
42 views
C++ Outputting strings from a .txt file in to a dynamic array outside of a member methods local scope
To start with, is what I'm asking possible?
I currently have a program with one member method (Read) that reads in strings from a .txt file locally in one member method and just outputs the same data ...
0
votes
0answers
13 views
Token generated from Facebook application has no scope
I am working on a native Android App for Facebook. I so created an account on Facebook developers in order to create a new app.
In the field "User and friend permission", I choose user_likes and ...
5
votes
2answers
128 views
C++ pointer to objects which go out of scope when function returns - why does this work?
Both these calls to get_string and get_string2 return objects which go out of scope when the function returns. Shouldn't the returned object be an address in memory which goes out of scope after the ...
1
vote
1answer
56 views
Scope of string inside lambda
I have an interesting scenario in which I've built a validation checking system that maintains a series of requirements in the form List<Tuple<Func<bool>, string>> where the Func ...
0
votes
1answer
9 views
scopes with lambda and arguments in Rails 4 style?
I'm wondering how the following is done in Rails 4 or if I just use the Rails 3 approach for using a lambda that can pass an argument the same way with 4 as I do with 3.
I'm pretty new to Rails 3 ...
0
votes
1answer
13 views
Is it possible to define a default_scope in Mongoose?
In Rails there is default_scope (http://apidock.com/rails/ActiveRecord/Scoping/Default/ClassMethods/default_scope) which allows specifying a default set of rules that are applied, when querying models ...
1
vote
1answer
50 views
How to get environment of a variable in R
I was wondering if there is anyway to get the environment of a declared variable. Say I already have declared a variable to an environment and want to use that variable's environment to declare a few ...
3
votes
4answers
40 views
Scope of variables in JavaScript, function does not return correct value
Good day, I've stumbled upon a trouble with scopes of variables in JS.
I have a function like this
var address = ...; //it may be or may not be defined earlier.
// It is not the only variable passed ...
-1
votes
2answers
49 views
How to use a variable from a method (inside Try-Catch) in another class?
So I'm trying to create a basic RPG userID selection menu using JFrames; I opted to display the ID options using radio buttons. Once the user selects and ID I burp it back using a JOptionPane. All ...
0
votes
1answer
13 views
spring web flow enable scopes
Spring web flow provides additional bean scopes like flow, conversation, flash etc. I can define flow scope beans in flow.xml using var or i can set values to new scoped variables. How i can define it ...
4
votes
1answer
67 views
Automatic variable has static lifespan if not initialized?
I have the concept of static local variables down pretty well: global lifespan, local scope. Similarly, I understand automatic variables are allocated/deallocated automatically when program flow ...
0
votes
2answers
31 views
Object scope. Why does this give a null object
initialize: function () {
var store = {};
var item = {};
var me = this;
Ext.Ajax.request({
url: "some_valid_url",
success: function ...
0
votes
0answers
11 views
size of the tree, Not in scope
Here is my code:
data Binary_Tree a = Null
|Node {element :: a, left_tree, right_tree :: Binary_Tree a}
deriving (Show, Eq)
--depth_of_tree
dot :: Integral b => ...
-1
votes
2answers
57 views
C++ variable scope for class friends
I have:
class Game...
class D3DGraphics...
I have a variable of type D3DGraphics called gfx declared in my Game class.
I make another few classes:
class Font...
class Viewport...
I make them ...
1
vote
2answers
39 views
Two pages for the same resource - ActiveAdmin
Currently I have User model, which is registered in user.rb as a new resource for ActiveAdmin. Generated page displays all users with scopes (all/journalists/startup_employees). Now I want to create ...
0
votes
1answer
30 views
ActiveRecord: class methods without scoping
I need to create a class method of my ActiveRecord.
But that method is not meant to be a scope, so I'd like to prevent misusage of it like a scope.
Is it possible to do?
-2
votes
3answers
39 views
Access a variable from inside a do while loop
How can I access a variable from inside a do while loop in Java?
This is the exercice i'm currenty working on ...
We ask the user write a value until the value entered is not is between 0 and 10
...
1
vote
4answers
49 views
stopping a recursive function call onclick button1 from a different function onclick button2
I'm trying to determine how to stop a recursive function call that came from a click to 'start_button' by calling a different function when 'stop_button' is clicked.
User clicks 'start_button' and ...
0
votes
1answer
33 views
Demo program error: '' was not declared in this scope
I am new to Qt and have started with the demo program found here. I have renamed the class AddressBook to Dialog. It compiles and executes just fine. I want to add my own code to the example, so I ...
0
votes
0answers
15 views
Changing datamembers within a limited scope
I am looking for a way to change the value of some datamembers of a C++ class, but in a temporary fashion, i.e. limited to a given scope {} within my main program. Say I just have a trivial setter:
...
-2
votes
2answers
37 views
write parent function var in javascript
How do you change the value of a variable in the parent function in javascript
For example:
function parent() {
var changeme = 0;
function child() {
changeme = 1;
}
}
...
2
votes
2answers
42 views
Issue with resolving components - scope
private void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 450, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(null);
...
4
votes
1answer
87 views
What's the logic behind this python global scoping magic?
I was messing around with the scoping in python and found something that I think is rather strange:
g = 5
def foo(a):
if a:
global g
g = 10
else:
g = 20
...
-1
votes
2answers
43 views
returning data from a function within a function
I want to return data that comes from a sqlite query in javascript. The problem is as follows:
App.dbInstantion.transaction(function(tx){
tx.executeSql('SELECT * FROM ...
-1
votes
1answer
47 views
I think I am messing up the scope of these pointers, C++?
So this is a reduced version of my main / Initializer function. When I call it and it has to add any items to the players inventor, I get a Debug Assertation Failed error.
It seems to me like I am ...
0
votes
2answers
41 views
How to strip away vector container and return an array?
When reading in files, it's convenient to allocate the memory via a vector:
someType* readCSV() {
std::vector<someType> vec;
someType x;
...
while(fscanf(f, parser, &x) != ...
1
vote
4answers
41 views
Scoping issues when chaining class constructors
Why does the following not work when chaining constructors:
#include <iostream>
#include <vector>
class cls {
public:
cls() {cls(5);} // want to resize v to 5
...
8
votes
2answers
78 views
What is going on with JavaScript scope here? [duplicate]
I've written the following snippet of code:
var f = function() { document.write("a"); };
function foo() {
f();
var f = function() { document.write("b"); };
}
foo();
I expected the ...
0
votes
0answers
19 views
Testing rails validates_uniqueness_of scoped to an array
I've got a model with a pretty specific validation for uniqueness. I don't want a duplicate record to exist for any one user, but a "duplicate" may exist between separate users.
The model
class ...
1
vote
1answer
27 views
How to define scope to get one record of a has_many association?
class User
has_many :posts do
def latest(report_date)
order(:report_date).where('report_date <= ?', report_date).limit(1)
end
end
end
class Post
belongs_to :user
...
1
vote
3answers
39 views
Calling Function in Original Scope of Object
Alright, given the following Javascript code that I DO NOT WANT to modify:
(function () {
function iWantToCallThis(){
// Do some stuff
}
window.SomeObject = {
theirfunc ...
0
votes
2answers
34 views
VB.Net Should I Store Database Connection String with Application or User Scope?
All of the examples I've seen set the connection string in app.config at the application level, but application settings are read-only. However, I want to allow the user to update the connection ...
0
votes
2answers
34 views
Is it possible to detect the variable of a using from another function and access that variable?
I have a function which calls another function. I want to know if within that second function I can detect if it is being invoked from the first function within a using-scope. If I can detect it, I ...
1
vote
3answers
46 views
Why does declaring an extern variable inside main() works,but not defining it inside main() as well?
This seems very trivial but a somewhat rigorous explanation for the following behavior will help my understanding of extern a lot.So I'll appreciate your answers.
In the following sample program,I've ...
0
votes
1answer
25 views
What is the proper RESTful way to handle a variable response for an endpoint that is based on the type of user that accesses it?
I have resource endpoints that I would like to respond differently to the user that tries to access the endpoint.
Scenario
Let us say that I have a resource endpoint /users, and the following ...
0
votes
1answer
38 views
window vs. application scope for Javascript variables
Can someone explain reasons for putting all variables with application scope vs. window scope? Is application scope ALWAYS better?
performance?
prevent naming collisons?
other reasons?
window ...
0
votes
1answer
43 views
YouTube API - Firefox/IE return error “X is not a function” for any 'player.' request
I've been pulling my hair out trying to get a fairly simple YouTube api integration working in FF/IE and have had no luck so far.
It sounds like either a scope issue or a call being made before the ...
3
votes
1answer
41 views
Javascript Scope: code block vs a code block with a self executing function cacoon
I'm trying to wrap my head around a scope issue. Take the two examples:
a)
var sels = ['.a', '.b', '.c'];
while ( (var sel = fieldsets.shift()) !== undefined ) {
(function(sel) {
...
0
votes
1answer
40 views
What is the least-dirty way to expose private javascript vars for testing?
I've got a state machine in JS which (to simplify) has an initial state that is only set before anything happens.
define(function() {
var state = 'initial',
exports = {};
exports.getState ...
0
votes
3answers
29 views
jquery use returned json array outside of function using post
I am sure I am missing something obvious, but whatever it is I can't seem to figure it out.
Here is what I have
var warr = new Array();
$('#step3next').click(function() {
...
1
vote
1answer
27 views
TCL Variable Acess Statistics
What I want to do seems simple, but I don't know if the TCL interpreter has this functionality.
I have a tcl script that will have thousands of variables defined prior to running within its scope -- ...
16
votes
2answers
205 views
Identifier with the same name in both expression and declaration of range-based for
Is it legal to declare a loop variable in a ranged-based for loop with the same name I use in the expression statement of the loop? I hope the example makes it clear.
#include <iostream>
...



