python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Java default constructor provided by compiler or JVM & when?
I am confused whether the compiler inserts the default constructor during compile time or JVM provides the default constructor during run time?
Lakshitha Nirmali Gamage
Votes: 0
Answers: 0
Purpose of explicitly deleting the default constructor
The codebase I’m working on was developed mostly pre-C++11. A lot of classes have a never-defined default constructor declared in the private section. I’m rather confident that in Modern C++, the Corr...
Quirin F. Schroll
Votes: 0
Answers: 2
Is implicitly deleted default constructor same as Compiler not synthesizing the default constructor
I am learning about class in C++. I came to know that in certain situations the default constructor can be implicitly deleted. Also, i read that when we have a user defined constructor then the compil...
Jason
Votes: 0
Answers: 1
Can't fill dynamic array
I'm learning C++ now and I have some misunderstandings
I've created 2d dynamic array, but I can't fill it
I've got error in 44 line like: Access violation writing location 0xFDFDFDFD.
This is my code:...
Anchr
Votes: 0
Answers: 2