Skip to content

Instantly share code, notes, and snippets.

@vinimonteiro
Created July 7, 2022 15:16
Show Gist options
  • Save vinimonteiro/1fc3a701ad77b4afb06d97db718c9fbf to your computer and use it in GitHub Desktop.
Save vinimonteiro/1fc3a701ad77b4afb06d97db718c9fbf to your computer and use it in GitHub Desktop.
Pass by value primitive
package com.vinimo;
public class App {
public static void main(String[] args) {
int foo = 1;
modify(foo);
System.out.println(foo);
}
public static void modify(int foo) {
foo = 5;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment