Forum: Java Mar 15th, 2008 |
| Replies: 8 Views: 930 yes. (except that in Java the first object is garbage-collected and in C++ it isn't) |
Forum: Java Jan 30th, 2008 |
| Replies: 6 Views: 3,147 attribute[] attr=new attribute[no_of_attribute];
attr has no_of_attribute arguments
for(int i=0;i<no_of_entity;i++){
i goes from 0 to no_of_entity
for(int j=0;j<no_of_attribute;j++){
j goes... |