View Single Post
Old 11-01-2004, 10:35 PM   #3 (permalink)
Rekna
Junkie
 
Thanks that worked great. I never actually thought about creating refrences like that.

If I have X0 and X1 which are refrences to 2 different vectors swap(X0,X1) will only swap the refrence right? I want to make sure it behaves like a full deep copy without actually performing a deep copy.

Also does anyone know if there is a way to overload [] operators not in a class? I think it would be really cool to make a class that behaved exactly like an array but with different symantics. Like array bounds checking, general bounds checking, maybe 1 based arrays instead of 2 based. It could be useful to develop using a class like this and then for a release move to the normal arrays.
Rekna is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76