카테고리 없음

you should be cautious of using deleting or freeing pointers

tomato13 2014. 1. 5. 16:17

in case of java, it is different from c or CPP language. Yes. There is pointer and it should be considered especially when using delete command. You should be cautious when using deleting a pointer which could be valid in other place. In other words, you should use delete or free function for reducing memory usage but you should be sure that those pointers are not used in any place.