Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 852583
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T07:37:15+00:00 2026-05-15T07:37:15+00:00

int java declaration of array like this int a[][]=new int[3][3] works but in c++

  • 0

int java declaration of array like this
int a[][]=new int[3][3] works but in c++ not why? please help me i have not used c++ a long time so please help me

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T07:37:16+00:00Added an answer on May 15, 2026 at 7:37 am

    I once had this same problem and ended up creating a class for it. Basically it’s stored as a pointer of single dimension array and the pointers are manipulated a bit so that it acts just like a 2D array (matrix). Here’s the code I used:

    #include <utility>
    #include <memory.h>
    
    template <typename T>
    class Matrix
    {
    protected:
        T** m;
        int x,y;
    
        __forceinline void setMatrix()
        {
            assert(x > 0);
            assert(y > 0);
            m = new T*[y];
            m[0] = new T[x*y];
            for (int i = 1; i < y; ++i)
            {
                m[i] = m[i-1] + x;
            }
        }
    public:
        Matrix():m(0),x(0),y(0){}
        Matrix(int rows, int cols):x(cols),y(rows),m(0)
        {
            setMatrix();
        }
    
        Matrix(const Matrix<T>& mat):m(0),x(mat.x),y(mat.y)
        {
            setMatrix();
            memcpy_s(m[0], x*y, mat.m[0], x*y);
        }
    
        ~Matrix()
        {
            if (m)
            {
                delete[] m[0];
                delete[] m;
            }
        }
    
        void fill(const T& val)
        {
            if (m)
            {
                for (int j = 0; j < y; ++j)
                    for (int i = 0; i < x; ++i)
                        m[j][i] = val;
            }
        }
    
        T& at(int row, int col)
        {
            assert(row >= 0 && row < y);
            assert(col >= 0 && col < x);
            return m[row][col];
        }
    
        const T& at(int row, int col) const
        {
            assert(row >= 0 && row < y);
            assert(col >= 0 && col < x);
            return m[row][col];
        }
    
        T* operator[](int row)
        {
            assert(row >= 0 && row < y);
            return m[row];
        }
    
        const T* operator[](int row) const
        {
            assert(row >= 0 && row < y);
            m[row];
        }
    
        T& operator ()(int row, int col)
        {
            assert(row >= 0 && row < y);
            assert(col >= 0 && col < x);
            return m[row][col];
        }
    
        const T& operator ()(int row, int col) const
        {
            assert(row >= 0 && row < y);
            assert(col >= 0 && col < x);
            return m[row][col];
        }
    
        void swap(Matrix<T>& mat)
        {
            std::swap(m, mat.m);
            std::swap(x, mat.x);
            std::swap(y, mat.y);
        }
    
        const Matrix& operator = (const Matrix<T>& rhs)
        {
            Matrix temp(rhs);
            swap(temp);
            return *this;
        }
    
        //
    
        int getRows() const
        {
            return y;
        }
    
        int getColumns() const
        {
            return x;
        }
    };
    

    Usage would be like:

    typedef Matrix<int> IntMatrix;
    IntMatrix mat(2,3); // Creates a 2x3 matrix to store integers.
    mat.fill(0); // Fill it with zeroes.
    int val02 = mat[0][2]; // Unsafe way to retrieve values
    int val12 = mat(1,2); // Safe way to retrieve values;
    mat(0,1) = 10; // Assign values directly to the matrix.
    

    You can also extend this class so that it has other matrix related function in it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Consider this code (Java, specifically): public int doSomething() { doA(); try { doB(); }
Say I have a binary file (generated with Java) containing a 32 bit int
I want to find out if length property for Java arrays is an int/long
On a 64-bit machine is the size of an int in Java 32 bits
I'm trying to mimic the following Java code: int[][] multi; // DIMENSIONS ARE UNKNOWN
Consider the following piece of Java code. int N = 10; Object obj[] =
int x = n / 3; // <-- make this faster // for instance
int x; printf(hello %n World\n, &x); printf(%d\n, x);
int[] mylist = { 2, 4, 5 }; IEnumerable<int> list1 = mylist; list1.ToList().Add(1); //
int n = 5; for(int i = 0;i!=n;i++)//condition != { //executing 5times } int

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.