I am making a password manager program, and in this program each login is an object. I would like to dynamically name these objects with a unique ID for each login, but what I cannot figure out is how to name the object something without flat out declaring a name as follows:
Login Google = new Login(info)
what i want to do is something like:
Login [id] = new Login(info)
Is there a way to do this?