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?










share|improve this question






















  • 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















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?










share|improve this question






















  • 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













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?










share|improve this question













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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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


















  • 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

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















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






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

List item for chat from Array inside array React Native

Thiostrepton

Caerphilly