Posted by Dave on Thursday, September 10, 2009 at 9:18am.
You have not mentioned the language with which you are working. Since Java does not allow operator overloading, I assume you are working with C++. It would be nice to mention "Programming C++" or something similar in your subject.
Back to arrays. Native C++ already allows double array indexing. Something like the following already works as is, without additional code.
int a[4][4];
for(int i=0;i<4;i++)for(int j=0;j<4;j++)...
If you want to know more about operator overloading in general, you can read up textbooks, or tutorials such as:
http://www.deitel.com/articles/cplusplus_tutorials/20060204/
Related Questions
sience C++ programing - could you please help me with this program even with one...
RECORD MANGEMENT - I NEED HELP IN CODING AND INDEXING RECORDS.
Medical Information management and office practice - What are the disadvantages ...
computer - What is the syntax used for operator overloading?
C++ - For each of the following problems, write a program or a program segment ...
finance - Indexing exemptions for inflation. Each year, the Internal Revenue ...
finance - indexing exemption for inflation. each year, the internal revenue ...
Macroeconomics* Please check my answers* - If real GDP per capita grows at a ...
statistics - Consider the following: A telephone exchange operator assumes that ...
Physics - A missile is fired and travels at 309 m/s. If the operator discovers ...
For Further Reading