Search Results

2
votes

What are the benefits of the Iterator interface in Java?

Because you may be iterating over something that's not a data structure. Let's say I have a networked application that pulls results from a server. I can return an Iterator wrapper around those res …
1
vote

What are the differences between struct and class in C++

STRUCT is a type of Abstract Data Type that divides up a given chunk of memory according to the structure specification. Structs are particularly useful in file serialization/deserialization as the …
10
votes

What is “loose coupling?” Please provide examples.

I'll use Java as an example. Let's say we have a class that looks like this: public class ABC { public void doDiskAccess() {...} } When I call the class, I'll n …