Search found 2 matches

by kokilasoral
04 Jun 2016, 05:32
Forum: Off Topic
Topic: Array not deleting?
Replies: 0
Views: 6199

Array not deleting?

In my first technique i want to delete a component at a position but instead of deleting, it variations the element to 0. @Override public void delete AtPostion(int position) { size-- ; for (int i = 0; i < list.length; i++){ if (i == position){ list = list [size]; } } } In the other technique i want...
by kokilasoral
04 Jun 2016, 05:29
Forum: Off Topic
Topic: problem with my project
Replies: 0
Views: 7095

problem with my project

If somebody could help me better understand what the book needs me to do I would really appreciate it. Ive done a little of the classes but I don't finish like they are correct or I am exploit them right. This is the projects description: A. Create an Ice Cream ConeException class whose constructor ...