One Day in Hacklebarney State Park
I used to live in Detroit for 2 years
Amy Haimerl documented her experience of renovating a $35,000 historic home in Detroit, Michigan, in her memoir “Detroit Hustle: A Memoir of Love, Life and Home.” Her website includes her blog, book news, press and event info, and more.
Primitive Type vs Reference Type in Java
//I am still trying to find ways to add Java format to this post and posts later. But now it’s //still like plain text.
package bi.xiang.dong;
/**
* Created by user on 2/3/2017.
*/
//primitive data type as parameter
class parameterExplanation1 {
public static void main(String[] args){
int x = 5;
show(x);
System.out.println("x= " + x);
}
public static void show(int x){
x = 4;
}
}
//reference type as parameter
class parameterExplanation{
int x = 5;
public static void main(String[] args){
parameterExplanation pe = new parameterExplanation();
pe.x = 9;
show(pe);
System.out.println(pe.x);
}
public static void show(parameterExplanation pe){
pe.x = 513321312;
}
}
SAS University Version
First Article
Hello world!
All About Me
Hello readers, this is an individual website of mine, all about my life, hobby, study and career.
