Tagged Questions
The struct-vs-class tag has no wiki summary.
21
votes
13answers
3k views
When are structs the answer?
I'm doing a raytracer hobby project, and originally I was using structs for my Vector and Ray objects, and I thought a raytracer was the perfect situation to use them: you create millions of them, ...
2
votes
6answers
202 views
What is the difference, usage-wise, between defines/macros/structs and consts/funcs/classes? (C++)
I know that the difference between defines and constants is that constants have type, and that between macros and functions, functions are called, and typed, whereas macros are untyped inline. Not so ...
1
vote
7answers
210 views
C#: Use Class or Struct for simple Types [closed]
Possible Duplicate:
C# / .NET : when structures are better than classes?
Given the following type
class Person
{
public int Id{get;}
public Name Name{get;set;}
public Address ...
1
vote
8answers
1k views
Enumerator Implementation: Use struct or class?
I noticed that List<T> defines its enumerator as a struct, while ArrayList defines its enumerator as a class. What's the difference? If I am to write an enumerator for my class, which one would ...