For a personal project I need to use a 2D bitset. Conducted a lot of googling and found a really great post with very useful code, https://forums.codeguru.com/showthread.php?522711-Need-2-dimensional-Bitarray. Take a look at the answer by monarch_dodra
.
At the end of if there is a following statement
I used "a(1,1)" instead of "a[1][1]". Long story short, it is a mostly better approach. If you MUST have the a[1][1] syntax, then I recommend writing an operator[j] which returns a proxy object, itself having an operator[i] which just forwards back to (j, i). YOu can then move operator()(i, j) to protected, if you want.
I can't figure out what the author is talking about? How do I implement this proxy object? I would appreciate any help with it.
Imagine a class
Matrix
that looked like this:And a person using this Matrix like this:
The code in
main()
could actually be written as:The
Matrix
operator[]
returns the proxy objectColumn
, which has it's ownoperator[]
, which returns ourchar
.Note: The Matrix is for educational purposes, it doesn't actually work.