Java Puzzle 2 (spot the bug if one exists)
package com.puzzles; | |
public class Puzzle2 { | |
public static void main(String[] args) { | |
// prints the classpath entry: com/puzzles/Puzzle2.class | |
System.out.println(Puzzle2.class.getName().replaceAll(".", "/") + ".class"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
benjholla commentedAug 29, 2018
Adapted from Java Puzzlers: Traps, Pitfalls, and Corner Cases - Puzzle #20