Skip to content

Instantly share code, notes, and snippets.

@AGhost-7
Created December 6, 2015 11:54
Show Gist options
  • Select an option

  • Save AGhost-7/34c74c370cd78a4a8006 to your computer and use it in GitHub Desktop.

Select an option

Save AGhost-7/34c74c370cd78a4a8006 to your computer and use it in GitHub Desktop.
class One {
public static void main(String [] args) {
Scanner scn = new Scanner(System.in);
Two two = new Two(scn);
}
}
class Two {
private Scanner scanner;
public Two(Scanner scanner) {
this.scanner = scanner;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment