The scope tag has no wiki summary.
2
votes
2answers
156 views
How to pass parameters to a function in C
Suppose I'm writing a program in C in which several parameters are asked at the beginning of the execution to the user and then remain costant until the end. Now, I need to pass these parameters to ...
0
votes
1answer
110 views
Is there any way to limit the scope of a knockout.js application? [closed]
I have a legacy project which I have been approved to work in a knockout.js module. This is great, however the application is extremely complex and I need to use some of the pre-built form validation ...
3
votes
1answer
176 views
Does setting a function public affect the C# compiler's ability to inline the function as an optimization?
This could be either for the .NET or Mono compilers.
I know that under certain conditions the compiler can inline functions (e.g. small, single call site, etc.) as an optimization. However, if the ...
3
votes
1answer
177 views
What is the advantage of determining scopes statically and using them dynamically in case of Python?
Firstly let me clarify that I know C and am learning Python. So my OOPS is kind of bad.
I was reading the official tutorial and found this
Although scopes are determined statically, they are ...
0
votes
2answers
116 views
Session or request scope for account details
I have a (browser based) web application. On each page, I want to have a little label and link in a corner that displays the user's username and other account information along with a logout button. ...
6
votes
3answers
345 views
Is the usage of internal scope blocks within a function bad style?
There are some (quite rare) cases where there is a risk of:
reusing a variable which is not intended to be reused (see example 1),
or using a variable instead of another, semantically close (see ...
0
votes
1answer
339 views
Nested classes vs namespaces
Is it good to use nested classes or should I use namespaces instead?
In context:
I have a templated codec loader and a codec have In objects and Out objects
template<class TypeOfData>
class ...
36
votes
8answers
2k views
What did programmers do before variable scope, where everything is global?
So, I am having to deal with seemingly archiac language (called PowerOn) where I have a main method, a few datatypes to define variables with, and has the ability to have sub-procedures (essentially ...
14
votes
9answers
1k views
Isn't class scope purely for organization? [duplicate]
Isn't scope just a way to organize classes, preventing outside code from accessing certain things you don't want accessed?
More specifically, is there any functional gain to having public, protected, ...
4
votes
3answers
139 views
Misunderstanding Scope in JavaScript?
I've seen a few other developers talk about binding scope in JavaScript but it has always seemed to me like this is an inaccurate phrase. The Function.prototype.call and Function.prototype.apply don't ...
4
votes
2answers
464 views
What is the best way to handle last minute changes to product scope?
What is the best way to handle changes to product requirements or scope during or after User Acceptance Testing (UAT)? How dangerous is it to make those changes, and how can the danger be mitigated?
2
votes
9answers
793 views
Confusion of scope of a variable: Is Global Variable a solution?
I am newly learning C Programming.
When we have a C Program with lot of functions, parameter passing, calling and all - It becomes a great problem as to which variable must be declared where.
My ...
-1
votes
7answers
204 views
How do you handle / what do you charge for documentation, training, warranty, changes in scope etc… [closed]
I am working with a client right now that wants me to sign a contact with a warranty for a year for no additional charge. As well as any reasonable changes he wants during the contract that are ...
2
votes
3answers
315 views
Scope of work contents in freelance development
One of my clients demanded to append screen shots of UI in the SOW. Also, I was asked to give a workflow diagram for the same. The project I am about to take is relatively small and my question is,
...
4
votes
3answers
4k views
What is meant by Scope of a variable?
I think of the scope of a variable as -
"The scope of a particular variable is the range within a program's source code in which that variable is recognized by the compiler".
That statement is ...
4
votes
2answers
282 views
What is required for a scope in an injection framework?
Working with libraries like Seam, Guice and Spring I have become accustomed to dealing with variables within a scope. These libraries give you a handful of scopes and allow you to define your own. ...
4
votes
2answers
197 views
How to deal with variables when extracting methods in to smaller methods?
This is an abstract question to clarify a refactoring concept in the ruby language. Assume in the real world that there would be many more variables and method in the Furniture Class and Refinish ...
16
votes
4answers
852 views
How to Determine # of Programmers needed for a project
How do you know how many programmers a particular project needs to be successful?
The company I work for fulfills orders for client companies. We have written an in-house warehouse management ...
10
votes
7answers
814 views
Is there a term used when internal variables are declared public and accessible?
If someone writes code so that an internal variable $_fields is accessible without using getter/setter methods, is there a proper term used to describe that?
Something polite enough to use with ...
0
votes
4answers
294 views
Is it scope creep if it has a price tag? [closed]
For my contracted project, I finished all the agreed on work-items.
They then asked for more. I agreed and put a price tag on it. (Programmers gotta eat too...)
Is it scope creep?
Or, is it only ...
5
votes
5answers
485 views
Is it OK to use dynamic typing to reduce the amount of variables in scope?
Often, when I am initializing something I have to use a temporary variable, for example:
file_str = "path/to/file"
file_file = open(file)
or
regexp_parts = ['foo', 'bar']
regexp = new ...
27
votes
5answers
2k views
Why are brackets required for try-catch?
In various languages (Java at least, think also C#?) you can do things like
if( condition )
singleStatement;
while( condition )
singleStatement;
for( var; condition; increment )
...
10
votes
5answers
542 views
Should you refactor existing code that is not broken in a project focused on new features?
Given a small project that aims to add new functionality to application, the changes introduced touch some existing code, involving updating these in certain areas. During implementation, I've found ...
7
votes
4answers
872 views
When would dynamic scoping be useful?
With dynamic scoping, a callee can access the variables of its caller. Pseudo C code:
void foo()
{
print(x);
}
void bar()
{
int x = 42;
foo();
}
Since I have never programmed in a ...
4
votes
5answers
162 views
where is there a good description of the use of the word 'scope' in computer science?
Where is there a good description of the use of the word 'scope' in computer science?
In this post of a question about the Java final reserved word one responder implies that scope is textual so each ...
5
votes
1answer
349 views
Scoping recommendations while developing in C
While developing a library using C, what are your recommendations about variable and function scoping?
In C++, OOP and namespaces made the whole thing a lot easier. But how to do that with plain C? ...