2-dimensional Deque in JAVA
up vote
-5
down vote
favorite
I wanna declare 2-dimensional deque in JAVA.
So, in c++ I did deque<deque<string>> table to initialize 2 dimensional deque. Could you please let me know how to declare 2dimensional deque in JAVA?
java c++ multidimensional-array deque arraydeque
add a comment |
up vote
-5
down vote
favorite
I wanna declare 2-dimensional deque in JAVA.
So, in c++ I did deque<deque<string>> table to initialize 2 dimensional deque. Could you please let me know how to declare 2dimensional deque in JAVA?
java c++ multidimensional-array deque arraydeque
You would do,ArrayDeque<ArrayDeque> myTwoDimensionDeque = new ArrayDeque<> ();(read about generics in Java)
– Mehdi B.
Nov 11 at 22:22
1
Don't fall into the trap of trying to write (or learn) Java by using C++ as a model. Learn Java as Java.
– PaulMcKenzie
Nov 11 at 22:28
You can't - see Cannot Create Arrays of Parameterized Types. Possible duplicate of What's the reason I can't create generic array types in Java?
– skomisa
Nov 12 at 2:08
Possible duplicate of Creating an array of Deques, which gives you a solution close to what you were asking for, but don't think of it as being 2-dimensional in the sense of arrays; the accepted answer gives you a list of Deques.
– skomisa
Nov 12 at 2:46
@MehdiB. That approach gives a single ArrayDeque which contains ArrayDeque elements. Access to the nth ArrayDeque element would only be possible using iteration (apart from the first and last entries). Since the question is tagged with multidimensional-array it is fair to assume that the OP wants to be able to access ArrayDeque element n directly.
– skomisa
Nov 12 at 3:07
add a comment |
up vote
-5
down vote
favorite
up vote
-5
down vote
favorite
I wanna declare 2-dimensional deque in JAVA.
So, in c++ I did deque<deque<string>> table to initialize 2 dimensional deque. Could you please let me know how to declare 2dimensional deque in JAVA?
java c++ multidimensional-array deque arraydeque
I wanna declare 2-dimensional deque in JAVA.
So, in c++ I did deque<deque<string>> table to initialize 2 dimensional deque. Could you please let me know how to declare 2dimensional deque in JAVA?
java c++ multidimensional-array deque arraydeque
java c++ multidimensional-array deque arraydeque
asked Nov 11 at 22:20
Anuj Bastola
41
41
You would do,ArrayDeque<ArrayDeque> myTwoDimensionDeque = new ArrayDeque<> ();(read about generics in Java)
– Mehdi B.
Nov 11 at 22:22
1
Don't fall into the trap of trying to write (or learn) Java by using C++ as a model. Learn Java as Java.
– PaulMcKenzie
Nov 11 at 22:28
You can't - see Cannot Create Arrays of Parameterized Types. Possible duplicate of What's the reason I can't create generic array types in Java?
– skomisa
Nov 12 at 2:08
Possible duplicate of Creating an array of Deques, which gives you a solution close to what you were asking for, but don't think of it as being 2-dimensional in the sense of arrays; the accepted answer gives you a list of Deques.
– skomisa
Nov 12 at 2:46
@MehdiB. That approach gives a single ArrayDeque which contains ArrayDeque elements. Access to the nth ArrayDeque element would only be possible using iteration (apart from the first and last entries). Since the question is tagged with multidimensional-array it is fair to assume that the OP wants to be able to access ArrayDeque element n directly.
– skomisa
Nov 12 at 3:07
add a comment |
You would do,ArrayDeque<ArrayDeque> myTwoDimensionDeque = new ArrayDeque<> ();(read about generics in Java)
– Mehdi B.
Nov 11 at 22:22
1
Don't fall into the trap of trying to write (or learn) Java by using C++ as a model. Learn Java as Java.
– PaulMcKenzie
Nov 11 at 22:28
You can't - see Cannot Create Arrays of Parameterized Types. Possible duplicate of What's the reason I can't create generic array types in Java?
– skomisa
Nov 12 at 2:08
Possible duplicate of Creating an array of Deques, which gives you a solution close to what you were asking for, but don't think of it as being 2-dimensional in the sense of arrays; the accepted answer gives you a list of Deques.
– skomisa
Nov 12 at 2:46
@MehdiB. That approach gives a single ArrayDeque which contains ArrayDeque elements. Access to the nth ArrayDeque element would only be possible using iteration (apart from the first and last entries). Since the question is tagged with multidimensional-array it is fair to assume that the OP wants to be able to access ArrayDeque element n directly.
– skomisa
Nov 12 at 3:07
You would do,
ArrayDeque<ArrayDeque> myTwoDimensionDeque = new ArrayDeque<> (); (read about generics in Java)– Mehdi B.
Nov 11 at 22:22
You would do,
ArrayDeque<ArrayDeque> myTwoDimensionDeque = new ArrayDeque<> (); (read about generics in Java)– Mehdi B.
Nov 11 at 22:22
1
1
Don't fall into the trap of trying to write (or learn) Java by using C++ as a model. Learn Java as Java.
– PaulMcKenzie
Nov 11 at 22:28
Don't fall into the trap of trying to write (or learn) Java by using C++ as a model. Learn Java as Java.
– PaulMcKenzie
Nov 11 at 22:28
You can't - see Cannot Create Arrays of Parameterized Types. Possible duplicate of What's the reason I can't create generic array types in Java?
– skomisa
Nov 12 at 2:08
You can't - see Cannot Create Arrays of Parameterized Types. Possible duplicate of What's the reason I can't create generic array types in Java?
– skomisa
Nov 12 at 2:08
Possible duplicate of Creating an array of Deques, which gives you a solution close to what you were asking for, but don't think of it as being 2-dimensional in the sense of arrays; the accepted answer gives you a list of Deques.
– skomisa
Nov 12 at 2:46
Possible duplicate of Creating an array of Deques, which gives you a solution close to what you were asking for, but don't think of it as being 2-dimensional in the sense of arrays; the accepted answer gives you a list of Deques.
– skomisa
Nov 12 at 2:46
@MehdiB. That approach gives a single ArrayDeque which contains ArrayDeque elements. Access to the nth ArrayDeque element would only be possible using iteration (apart from the first and last entries). Since the question is tagged with multidimensional-array it is fair to assume that the OP wants to be able to access ArrayDeque element n directly.
– skomisa
Nov 12 at 3:07
@MehdiB. That approach gives a single ArrayDeque which contains ArrayDeque elements. Access to the nth ArrayDeque element would only be possible using iteration (apart from the first and last entries). Since the question is tagged with multidimensional-array it is fair to assume that the OP wants to be able to access ArrayDeque element n directly.
– skomisa
Nov 12 at 3:07
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53253814%2f2-dimensional-deque-in-java%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You would do,
ArrayDeque<ArrayDeque> myTwoDimensionDeque = new ArrayDeque<> ();(read about generics in Java)– Mehdi B.
Nov 11 at 22:22
1
Don't fall into the trap of trying to write (or learn) Java by using C++ as a model. Learn Java as Java.
– PaulMcKenzie
Nov 11 at 22:28
You can't - see Cannot Create Arrays of Parameterized Types. Possible duplicate of What's the reason I can't create generic array types in Java?
– skomisa
Nov 12 at 2:08
Possible duplicate of Creating an array of Deques, which gives you a solution close to what you were asking for, but don't think of it as being 2-dimensional in the sense of arrays; the accepted answer gives you a list of Deques.
– skomisa
Nov 12 at 2:46
@MehdiB. That approach gives a single ArrayDeque which contains ArrayDeque elements. Access to the nth ArrayDeque element would only be possible using iteration (apart from the first and last entries). Since the question is tagged with multidimensional-array it is fair to assume that the OP wants to be able to access ArrayDeque element n directly.
– skomisa
Nov 12 at 3:07