Java Stack push() vs add()
Kalyanaraman Santhanam: Edit: Will I encounter any issues if I use add(…) instead of push(…)? Definitly, you will not encounter any issues, because add is part of List interface as well as the Stack, but you should to notice the further readability of your code and your intentions in it by other programmers. push method … Read more