How to prevent changing the value of variable? The Next CEO of Stack OverflowIs Java “pass-by-reference” or “pass-by-value”?How do I efficiently iterate over each entry in a Java Map?Sort a Map<Key, Value> by valuesHow do I call one constructor from another in Java?How do I read / convert an InputStream into a String in Java?How do I generate random integers within a specific range in Java?How to get an enum value from a string value in Java?How do I determine whether an array contains a particular value in Java?How do I convert a String to an int in Java?How do I fix android.os.NetworkOnMainThreadException?

Why does the UK parliament need a vote on the political declaration?

Why do variable in an inner function return nan when there is the same variable name at the inner function declared after log

Contours of a clandestine nature

How to avoid supervisors with prejudiced views?

Real integral using residue theorem - why doesn't this work?

What connection does MS Office have to Netscape Navigator?

How does the mv command work with external drives?

Can we say or write : "No, it'sn't"?

MessageLevel in QGIS3

Why don't programming languages automatically manage the synchronous/asynchronous problem?

Written every which way

Why am I allowed to create multiple unique pointers from a single object?

How does the Z80 determine which peripheral sent an interrupt?

What happened in Rome, when the western empire "fell"?

Is it my responsibility to learn a new technology in my own time my employer wants to implement?

How do I make a variable always equal to the result of some calculations?

Solidity! Invalid implicit conversion from string memory to bytes memory requested

Make solar eclipses exceedingly rare, but still have new moons

Why does standard notation not preserve intervals (visually)

Is 'diverse range' a pleonastic phrase?

How to prevent changing the value of variable?

Rotate a column

Are there any limitations on attacking while grappling?

What is the result of assigning to std::vector<T>::begin()?



How to prevent changing the value of variable?



The Next CEO of Stack OverflowIs Java “pass-by-reference” or “pass-by-value”?How do I efficiently iterate over each entry in a Java Map?Sort a Map<Key, Value> by valuesHow do I call one constructor from another in Java?How do I read / convert an InputStream into a String in Java?How do I generate random integers within a specific range in Java?How to get an enum value from a string value in Java?How do I determine whether an array contains a particular value in Java?How do I convert a String to an int in Java?How do I fix android.os.NetworkOnMainThreadException?










8















I am a beginner in java. When developing a program, I created an object with a constructor with variables as arguments. But when I change the value of the variable after creating the object, my object has the second value instead of the first one. I don't want my object to change the value. What do I do?



public class Person 

public Person(int[] arrayTest)
this.arrayTest = arrayTest;

public int[] getArray()
return this.arrayTest;

public boolean canHaveAsArray(int[] arrayTest)
return true;

private int[] arrayTest = new int[2];

public static void main(String[] args)
int[] array = new int[] 5, 10;
Person obj1 = new Person(array);
array[0] = 20;
System.out.println(Arrays.toString(obj1.getArray()));




My output should be [5, 10], but instead, I am getting [20,10]. I need to get [5,10] even when I change an element of the array as shown above. What should I do?










share|improve this question


























    8















    I am a beginner in java. When developing a program, I created an object with a constructor with variables as arguments. But when I change the value of the variable after creating the object, my object has the second value instead of the first one. I don't want my object to change the value. What do I do?



    public class Person 

    public Person(int[] arrayTest)
    this.arrayTest = arrayTest;

    public int[] getArray()
    return this.arrayTest;

    public boolean canHaveAsArray(int[] arrayTest)
    return true;

    private int[] arrayTest = new int[2];

    public static void main(String[] args)
    int[] array = new int[] 5, 10;
    Person obj1 = new Person(array);
    array[0] = 20;
    System.out.println(Arrays.toString(obj1.getArray()));




    My output should be [5, 10], but instead, I am getting [20,10]. I need to get [5,10] even when I change an element of the array as shown above. What should I do?










    share|improve this question
























      8












      8








      8








      I am a beginner in java. When developing a program, I created an object with a constructor with variables as arguments. But when I change the value of the variable after creating the object, my object has the second value instead of the first one. I don't want my object to change the value. What do I do?



      public class Person 

      public Person(int[] arrayTest)
      this.arrayTest = arrayTest;

      public int[] getArray()
      return this.arrayTest;

      public boolean canHaveAsArray(int[] arrayTest)
      return true;

      private int[] arrayTest = new int[2];

      public static void main(String[] args)
      int[] array = new int[] 5, 10;
      Person obj1 = new Person(array);
      array[0] = 20;
      System.out.println(Arrays.toString(obj1.getArray()));




      My output should be [5, 10], but instead, I am getting [20,10]. I need to get [5,10] even when I change an element of the array as shown above. What should I do?










      share|improve this question














      I am a beginner in java. When developing a program, I created an object with a constructor with variables as arguments. But when I change the value of the variable after creating the object, my object has the second value instead of the first one. I don't want my object to change the value. What do I do?



      public class Person 

      public Person(int[] arrayTest)
      this.arrayTest = arrayTest;

      public int[] getArray()
      return this.arrayTest;

      public boolean canHaveAsArray(int[] arrayTest)
      return true;

      private int[] arrayTest = new int[2];

      public static void main(String[] args)
      int[] array = new int[] 5, 10;
      Person obj1 = new Person(array);
      array[0] = 20;
      System.out.println(Arrays.toString(obj1.getArray()));




      My output should be [5, 10], but instead, I am getting [20,10]. I need to get [5,10] even when I change an element of the array as shown above. What should I do?







      java






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 1 hour ago









      OpheliaOphelia

      412




      412






















          2 Answers
          2






          active

          oldest

          votes


















          5














          Array is passed by reference in Java. If you pass the original array to the constructor of Person, you are just passing the reference to the original array and the changes in original array will reflect in Person instance.



          So if you don't want to change the value of array in Person so don't pass the original array, instead just send a copy of original array like below:



          Person obj1 = new Person(java.util.Arrays.copyOf(array, array.length));


          You can also modify the code in Person constructor to achieve the same results:



          public Person(int[] arrayTest) 
          this.arrayTest = java.util.Arrays.copyOf(arrayTest, arrayTest.length);






          share|improve this answer
































            4














            There is no such thing as immutable (unchangeable) array in Java. The Java language does not support this, and neither does the JVM. You can't solve this at the language level.



            In general, the only way to prevent changes to an array is to not share the reference to the array with other code that might change it.



            In your example, you have what is known as a leaky abstraction. You are passing an array to your Person class, and the caller is keeping a reference to that array so that it can change it. To solve this, you can:



            • copy the array, and pass a reference to the copy, or

            • have the constructor (or a setter for the array attribute) make the copy.

            (See answer https://stackoverflow.com/a/55428214/139985 for example code.)



            The second alternative is preferable from an OO perspective. The Person class should be responsible for preserving its own internal state from interference ... if that is your design requirement. It should not rely on the caller to do this. (Even if the caller is technically part of the same class as is the case here.)






            share|improve this answer

























              Your Answer






              StackExchange.ifUsing("editor", function ()
              StackExchange.using("externalEditor", function ()
              StackExchange.using("snippets", function ()
              StackExchange.snippets.init();
              );
              );
              , "code-snippets");

              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "1"
              ;
              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: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              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
              );



              );













              draft saved

              draft discarded


















              StackExchange.ready(
              function ()
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55428172%2fhow-to-prevent-changing-the-value-of-variable%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              5














              Array is passed by reference in Java. If you pass the original array to the constructor of Person, you are just passing the reference to the original array and the changes in original array will reflect in Person instance.



              So if you don't want to change the value of array in Person so don't pass the original array, instead just send a copy of original array like below:



              Person obj1 = new Person(java.util.Arrays.copyOf(array, array.length));


              You can also modify the code in Person constructor to achieve the same results:



              public Person(int[] arrayTest) 
              this.arrayTest = java.util.Arrays.copyOf(arrayTest, arrayTest.length);






              share|improve this answer





























                5














                Array is passed by reference in Java. If you pass the original array to the constructor of Person, you are just passing the reference to the original array and the changes in original array will reflect in Person instance.



                So if you don't want to change the value of array in Person so don't pass the original array, instead just send a copy of original array like below:



                Person obj1 = new Person(java.util.Arrays.copyOf(array, array.length));


                You can also modify the code in Person constructor to achieve the same results:



                public Person(int[] arrayTest) 
                this.arrayTest = java.util.Arrays.copyOf(arrayTest, arrayTest.length);






                share|improve this answer



























                  5












                  5








                  5







                  Array is passed by reference in Java. If you pass the original array to the constructor of Person, you are just passing the reference to the original array and the changes in original array will reflect in Person instance.



                  So if you don't want to change the value of array in Person so don't pass the original array, instead just send a copy of original array like below:



                  Person obj1 = new Person(java.util.Arrays.copyOf(array, array.length));


                  You can also modify the code in Person constructor to achieve the same results:



                  public Person(int[] arrayTest) 
                  this.arrayTest = java.util.Arrays.copyOf(arrayTest, arrayTest.length);






                  share|improve this answer















                  Array is passed by reference in Java. If you pass the original array to the constructor of Person, you are just passing the reference to the original array and the changes in original array will reflect in Person instance.



                  So if you don't want to change the value of array in Person so don't pass the original array, instead just send a copy of original array like below:



                  Person obj1 = new Person(java.util.Arrays.copyOf(array, array.length));


                  You can also modify the code in Person constructor to achieve the same results:



                  public Person(int[] arrayTest) 
                  this.arrayTest = java.util.Arrays.copyOf(arrayTest, arrayTest.length);







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited 1 hour ago

























                  answered 1 hour ago









                  Aniket SahrawatAniket Sahrawat

                  6,32121339




                  6,32121339























                      4














                      There is no such thing as immutable (unchangeable) array in Java. The Java language does not support this, and neither does the JVM. You can't solve this at the language level.



                      In general, the only way to prevent changes to an array is to not share the reference to the array with other code that might change it.



                      In your example, you have what is known as a leaky abstraction. You are passing an array to your Person class, and the caller is keeping a reference to that array so that it can change it. To solve this, you can:



                      • copy the array, and pass a reference to the copy, or

                      • have the constructor (or a setter for the array attribute) make the copy.

                      (See answer https://stackoverflow.com/a/55428214/139985 for example code.)



                      The second alternative is preferable from an OO perspective. The Person class should be responsible for preserving its own internal state from interference ... if that is your design requirement. It should not rely on the caller to do this. (Even if the caller is technically part of the same class as is the case here.)






                      share|improve this answer





























                        4














                        There is no such thing as immutable (unchangeable) array in Java. The Java language does not support this, and neither does the JVM. You can't solve this at the language level.



                        In general, the only way to prevent changes to an array is to not share the reference to the array with other code that might change it.



                        In your example, you have what is known as a leaky abstraction. You are passing an array to your Person class, and the caller is keeping a reference to that array so that it can change it. To solve this, you can:



                        • copy the array, and pass a reference to the copy, or

                        • have the constructor (or a setter for the array attribute) make the copy.

                        (See answer https://stackoverflow.com/a/55428214/139985 for example code.)



                        The second alternative is preferable from an OO perspective. The Person class should be responsible for preserving its own internal state from interference ... if that is your design requirement. It should not rely on the caller to do this. (Even if the caller is technically part of the same class as is the case here.)






                        share|improve this answer



























                          4












                          4








                          4







                          There is no such thing as immutable (unchangeable) array in Java. The Java language does not support this, and neither does the JVM. You can't solve this at the language level.



                          In general, the only way to prevent changes to an array is to not share the reference to the array with other code that might change it.



                          In your example, you have what is known as a leaky abstraction. You are passing an array to your Person class, and the caller is keeping a reference to that array so that it can change it. To solve this, you can:



                          • copy the array, and pass a reference to the copy, or

                          • have the constructor (or a setter for the array attribute) make the copy.

                          (See answer https://stackoverflow.com/a/55428214/139985 for example code.)



                          The second alternative is preferable from an OO perspective. The Person class should be responsible for preserving its own internal state from interference ... if that is your design requirement. It should not rely on the caller to do this. (Even if the caller is technically part of the same class as is the case here.)






                          share|improve this answer















                          There is no such thing as immutable (unchangeable) array in Java. The Java language does not support this, and neither does the JVM. You can't solve this at the language level.



                          In general, the only way to prevent changes to an array is to not share the reference to the array with other code that might change it.



                          In your example, you have what is known as a leaky abstraction. You are passing an array to your Person class, and the caller is keeping a reference to that array so that it can change it. To solve this, you can:



                          • copy the array, and pass a reference to the copy, or

                          • have the constructor (or a setter for the array attribute) make the copy.

                          (See answer https://stackoverflow.com/a/55428214/139985 for example code.)



                          The second alternative is preferable from an OO perspective. The Person class should be responsible for preserving its own internal state from interference ... if that is your design requirement. It should not rely on the caller to do this. (Even if the caller is technically part of the same class as is the case here.)







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited 1 hour ago

























                          answered 1 hour ago









                          Stephen CStephen C

                          525k72585944




                          525k72585944



























                              draft saved

                              draft discarded
















































                              Thanks for contributing an answer to Stack Overflow!


                              • 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.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55428172%2fhow-to-prevent-changing-the-value-of-variable%23new-answer', 'question_page');

                              );

                              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







                              Popular posts from this blog

                              How to create a command for the “strange m” symbol in latex? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)How do you make your own symbol when Detexify fails?Writing bold small caps with mathpazo packageplus-minus symbol with parenthesis around the minus signGreek character in Beamer document titleHow to create dashed right arrow over symbol?Currency symbol: Turkish LiraDouble prec as a single symbol?Plus Sign Too Big; How to Call adfbullet?Is there a TeX macro for three-legged pi?How do I get my integral-like symbol to align like the integral?How to selectively substitute a letter with another symbol representing the same letterHow do I generate a less than symbol and vertical bar that are the same height?

                              Българска екзархия Съдържание История | Български екзарси | Вижте също | Външни препратки | Литература | Бележки | НавигацияУстав за управлението на българската екзархия. Цариград, 1870Слово на Ловешкия митрополит Иларион при откриването на Българския народен събор в Цариград на 23. II. 1870 г.Българската правда и гръцката кривда. От С. М. (= Софийски Мелетий). Цариград, 1872Предстоятели на Българската екзархияПодмененият ВеликденИнформационна агенция „Фокус“Димитър Ризов. Българите в техните исторически, етнографически и политически граници (Атлас съдържащ 40 карти). Berlin, Königliche Hoflithographie, Hof-Buch- und -Steindruckerei Wilhelm Greve, 1917Report of the International Commission to Inquire into the Causes and Conduct of the Balkan Wars

                              Category:Tremithousa Media in category "Tremithousa"Navigation menuUpload media34° 49′ 02.7″ N, 32° 26′ 37.32″ EOpenStreetMapGoogle EarthProximityramaReasonatorScholiaStatisticsWikiShootMe