Recent content by shim2k

  1. S

    Java object's reference namming

    How to name an object in Java by a string variable? For example: createUsr(String s) { User s = new User(); For this example, the reference name would be "s" and not the value of the string s.. thanks!