Does “variables should live in the smallest scope as possible” include the case “variables should not...
How to detect if C code (which needs 'extern C') is compiled in C++
Declaring and defining template, and specialising them
Accountant/ lawyer will not return my call
Are tamper resistant receptacles really safer?
What wound would be of little consequence to a biped but terrible for a quadruped?
Warn me when the equation number is pushed to the next line
Can you reject a postdoc offer after the PI has paid a large sum for flights/accommodation for your visit?
Of what use is Arcane Recovery to an Elf Wizard?
Word for a person who has no opinion about whether god exists
'The literal of type int is out of range' con número enteros pequeños (2 dígitos)
What are actual Tesla M60 models used by AWS?
Distinction between apt-cache and dpkg -l
Virginia employer terminated employee and wants signing bonus returned
How did Alan Turing break the enigma code using the hint given by the lady in the bar?
weren't playing vs didn't play
Is it possible to avoid unpacking when merging Association?
What Happens when Passenger Refuses to Fly Boeing 737 Max?
Is it "Vierergruppe" or "Viergruppe", or is there a distinction?
Why doesn't this Google Translate ad use the word "Translation" instead of "Translate"?
Are there historical instances of the capital of a colonising country being temporarily or permanently shifted to one of its colonies?
Does a warlock using the Darkness/Devil's Sight combo still have advantage on ranged attacks against a target outside the Darkness?
Is it necessary to separate DC power cables and data cables?
Poincare duality on the level of complexes
Single word request: Harming the benefactor
Does “variables should live in the smallest scope as possible” include the case “variables should not exist if possible”?
2019 Community Moderator ElectionRationale to prefer local variables over instance variables?Is it OK to use dynamic typing to reduce the amount of variables in scope?How to deal with variables when extracting methods in to smaller methods?How to refactor a Python “god class”?Should a structure be refactored into smaller structures?How to refactor my project to have less mutable objects?Is Java package level scope useful?How do you safely refactor in a language with dynamic scope?Should I unit test the consuming class or the class running the logic?How to not test implementation when method returns void?Rationale to prefer local variables over instance variables?
According to https://softwareengineering.stackexchange.com/a/388055/248528, variables should live in the smallest scope as possible, simplify the problem into my interpretation, it means we should refactor this kind of code:
public class Main{
private A a;
private B b;
public ABResult getResult(){
getA();
getB();
return ABFactory.mix(a,b);
}
private getA(){
a=SomeFactory.getA();
}
private getB(){
b=SomeFactory.getB();
}
}
into something like this:
public class Main{
public ABResult getResult(){
A a=getA();
B b=getB();
return ABFactory.mix(a,b);
}
private getA(){
a=SomeFactory.getA();
}
private getB(){
b=SomeFactory.getB();
}
}
but according to the "spirit" of "variables should live in the smallest scope as possible", isn't "never have variables" have smaller scope than "have variables"? So I think the version above should be refactored:
public class Main{
public ABResult getResult(){
return ABFactory.mix(getA(),getB());
}
private getA(){
a=SomeFactory.getA();
}
private getB(){
b=SomeFactory.getB();
}
}
so that getResult() doesn't have any local variables at all. Is that true?
refactoring scope local-variable
add a comment |
According to https://softwareengineering.stackexchange.com/a/388055/248528, variables should live in the smallest scope as possible, simplify the problem into my interpretation, it means we should refactor this kind of code:
public class Main{
private A a;
private B b;
public ABResult getResult(){
getA();
getB();
return ABFactory.mix(a,b);
}
private getA(){
a=SomeFactory.getA();
}
private getB(){
b=SomeFactory.getB();
}
}
into something like this:
public class Main{
public ABResult getResult(){
A a=getA();
B b=getB();
return ABFactory.mix(a,b);
}
private getA(){
a=SomeFactory.getA();
}
private getB(){
b=SomeFactory.getB();
}
}
but according to the "spirit" of "variables should live in the smallest scope as possible", isn't "never have variables" have smaller scope than "have variables"? So I think the version above should be refactored:
public class Main{
public ABResult getResult(){
return ABFactory.mix(getA(),getB());
}
private getA(){
a=SomeFactory.getA();
}
private getB(){
b=SomeFactory.getB();
}
}
so that getResult() doesn't have any local variables at all. Is that true?
refactoring scope local-variable
3
Creating explicit variables comes with the benefit of having to name them. Introducing a few variables can quickly turn an opaque method into a readable one.
– Jared Goguen
3 hours ago
add a comment |
According to https://softwareengineering.stackexchange.com/a/388055/248528, variables should live in the smallest scope as possible, simplify the problem into my interpretation, it means we should refactor this kind of code:
public class Main{
private A a;
private B b;
public ABResult getResult(){
getA();
getB();
return ABFactory.mix(a,b);
}
private getA(){
a=SomeFactory.getA();
}
private getB(){
b=SomeFactory.getB();
}
}
into something like this:
public class Main{
public ABResult getResult(){
A a=getA();
B b=getB();
return ABFactory.mix(a,b);
}
private getA(){
a=SomeFactory.getA();
}
private getB(){
b=SomeFactory.getB();
}
}
but according to the "spirit" of "variables should live in the smallest scope as possible", isn't "never have variables" have smaller scope than "have variables"? So I think the version above should be refactored:
public class Main{
public ABResult getResult(){
return ABFactory.mix(getA(),getB());
}
private getA(){
a=SomeFactory.getA();
}
private getB(){
b=SomeFactory.getB();
}
}
so that getResult() doesn't have any local variables at all. Is that true?
refactoring scope local-variable
According to https://softwareengineering.stackexchange.com/a/388055/248528, variables should live in the smallest scope as possible, simplify the problem into my interpretation, it means we should refactor this kind of code:
public class Main{
private A a;
private B b;
public ABResult getResult(){
getA();
getB();
return ABFactory.mix(a,b);
}
private getA(){
a=SomeFactory.getA();
}
private getB(){
b=SomeFactory.getB();
}
}
into something like this:
public class Main{
public ABResult getResult(){
A a=getA();
B b=getB();
return ABFactory.mix(a,b);
}
private getA(){
a=SomeFactory.getA();
}
private getB(){
b=SomeFactory.getB();
}
}
but according to the "spirit" of "variables should live in the smallest scope as possible", isn't "never have variables" have smaller scope than "have variables"? So I think the version above should be refactored:
public class Main{
public ABResult getResult(){
return ABFactory.mix(getA(),getB());
}
private getA(){
a=SomeFactory.getA();
}
private getB(){
b=SomeFactory.getB();
}
}
so that getResult() doesn't have any local variables at all. Is that true?
refactoring scope local-variable
refactoring scope local-variable
asked 4 hours ago
mmmaaammmaaa
2,68741724
2,68741724
3
Creating explicit variables comes with the benefit of having to name them. Introducing a few variables can quickly turn an opaque method into a readable one.
– Jared Goguen
3 hours ago
add a comment |
3
Creating explicit variables comes with the benefit of having to name them. Introducing a few variables can quickly turn an opaque method into a readable one.
– Jared Goguen
3 hours ago
3
3
Creating explicit variables comes with the benefit of having to name them. Introducing a few variables can quickly turn an opaque method into a readable one.
– Jared Goguen
3 hours ago
Creating explicit variables comes with the benefit of having to name them. Introducing a few variables can quickly turn an opaque method into a readable one.
– Jared Goguen
3 hours ago
add a comment |
1 Answer
1
active
oldest
votes
No. There are several reasons why:
- Variables with meaningful names can make code easier to comprehend.
- Breaking up complex formulas into smaller steps can make the code easier to read.
- Caching.
- Holding references to objects so that they can be used more than once.
And so on.
1
Also worth mentioning: The value is going to be stored in memory regardless, so it actually ends up with the same scope anyway. May as well name it(for the reasons Robert mentions above)!
– Maybe_Factor
1 hour ago
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "131"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsoftwareengineering.stackexchange.com%2fquestions%2f388435%2fdoes-variables-should-live-in-the-smallest-scope-as-possible-include-the-case%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
No. There are several reasons why:
- Variables with meaningful names can make code easier to comprehend.
- Breaking up complex formulas into smaller steps can make the code easier to read.
- Caching.
- Holding references to objects so that they can be used more than once.
And so on.
1
Also worth mentioning: The value is going to be stored in memory regardless, so it actually ends up with the same scope anyway. May as well name it(for the reasons Robert mentions above)!
– Maybe_Factor
1 hour ago
add a comment |
No. There are several reasons why:
- Variables with meaningful names can make code easier to comprehend.
- Breaking up complex formulas into smaller steps can make the code easier to read.
- Caching.
- Holding references to objects so that they can be used more than once.
And so on.
1
Also worth mentioning: The value is going to be stored in memory regardless, so it actually ends up with the same scope anyway. May as well name it(for the reasons Robert mentions above)!
– Maybe_Factor
1 hour ago
add a comment |
No. There are several reasons why:
- Variables with meaningful names can make code easier to comprehend.
- Breaking up complex formulas into smaller steps can make the code easier to read.
- Caching.
- Holding references to objects so that they can be used more than once.
And so on.
No. There are several reasons why:
- Variables with meaningful names can make code easier to comprehend.
- Breaking up complex formulas into smaller steps can make the code easier to read.
- Caching.
- Holding references to objects so that they can be used more than once.
And so on.
edited 2 hours ago
answered 3 hours ago
Robert HarveyRobert Harvey
166k41380595
166k41380595
1
Also worth mentioning: The value is going to be stored in memory regardless, so it actually ends up with the same scope anyway. May as well name it(for the reasons Robert mentions above)!
– Maybe_Factor
1 hour ago
add a comment |
1
Also worth mentioning: The value is going to be stored in memory regardless, so it actually ends up with the same scope anyway. May as well name it(for the reasons Robert mentions above)!
– Maybe_Factor
1 hour ago
1
1
Also worth mentioning: The value is going to be stored in memory regardless, so it actually ends up with the same scope anyway. May as well name it(for the reasons Robert mentions above)!
– Maybe_Factor
1 hour ago
Also worth mentioning: The value is going to be stored in memory regardless, so it actually ends up with the same scope anyway. May as well name it(for the reasons Robert mentions above)!
– Maybe_Factor
1 hour ago
add a comment |
Thanks for contributing an answer to Software Engineering Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsoftwareengineering.stackexchange.com%2fquestions%2f388435%2fdoes-variables-should-live-in-the-smallest-scope-as-possible-include-the-case%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
3
Creating explicit variables comes with the benefit of having to name them. Introducing a few variables can quickly turn an opaque method into a readable one.
– Jared Goguen
3 hours ago