Not really, the std::cin object is created in the iostream header, and AFAIK the constructor for istream objects doesn't take arguments. What are you trying to do? There is probably a better solution. Also streams really only save formatting data, they are there to interact with the hardware input.
See, I want to make a very simple editor in the console, so I want to have an editable string to begin with, if you could give me any pointers that would be great.
Now, when you use myin<<x, it will put x into the input buffer! That way, myin>>x will read from cin iff the buffer ins empty, and from the buffer otherwise! I think that's just what you wanted! :D