Skip to content

Instantly share code, notes, and snippets.

@ajduke
Created August 19, 2012 07:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajduke/3393404 to your computer and use it in GitHub Desktop.
Save ajduke/3393404 to your computer and use it in GitHub Desktop.
This operator when same parameter name
public class Shape {
int length;
int width;
private Shape(int length, int width) {
length = length;
width = width;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment