Hi,
Just out of curiosity: Why C++ choose a = new A instead of a = A.new as the way to instantiate an object? Doesn't latter seems more like more object-oriented?
|
1
|
Hi, Just out of curiosity: Why C++ choose |
||||||||||||||
|
|
|
Does it? That depends on how you define "object-oriented". If you define it, the way Java did, as "everything must have syntax of the form " But luckily, there are also a few people who feel that "object-oriented" should relate to the behavior of your objects, rather than which syntax is used on them. Essentially it should be boiled down to what the Wikipedia page says:
Note that it says nothing about the syntax. It doesn't say "and you must call every function by specifying an object name followed by a dot followed by the function name". And given that definition, C++ gurus have realized this long ago, and written articles such as this. An object's interface is not just the set of member methods (which can be called with the dot syntax). It is the set of functions which can manipulate the object. Whether they are members or friends doesn't really matter. It is object-oriented as long as the object is able to stay consistent, that is, it is able to prevent arbitrary functions from messing with it. So, why would One of the key goals behind OOP was to allow more reusable code. If |
||||
|
|
|
Why one should have seperate new of each class ? I dont think its needed at all because the objective of new is to allocate appropriate memory and construct the object by calling constructor. Thus behaviour of new is unique and independent irrespective of any class. So why dont make is resuable ? You can override new when you want to do memory management by yourself ( i.e. by allocating memory pool once and returning memory on demand). |
|||
|
|
|
|
please read the code (it works), and then you'll have different ideas:
|
|||
|
|
|
I think the biggest confusion here is that new has two meanings: there's the built-in new-expression (which combines memory allocation and object creation) and then there's the overloadable operator new (which deals only with memory allocation). The first, as far as I can see, is something whose behavior you cannot change, and hence it wouldn't make sense to masquerade it as a member function. (Or it would have to be - or look like - a member function that no class can implement / override!!) This would also lead to another inconsistency:
C++ is not a pure OOP language in that not everything is an object. C++ also allows the use of free functions (which is encouraged by some authors and the example set in the SC++L design), which a C++ programmer should be comfortable with. Of course, the new-expression isn't a function, but I don't see how the syntax reminding vaguely of free-function call can put anybody off in a language where free function calls are very common. |
||||||
|
|
|
Actually, you can instantiate object with something like
But that's not the case. Syntax is not the case either: you can distinguish I think the reason is memory management. In C++, unlike many other object-oriented languages, memory management is done by user. There's no default garbage collector, although the standard and non-standard libraries contain it, along with various techniques to manage memory. Therefore the programmer must see the Unless having been overloaded, the use of |
||||
|
|
|
The In any case, dynamic object allocation is special as the compiler allocates memory and constructs an object in two steps and adds code to deal with exceptions in either step ensuring that memory is never leaked. Making it look like a member function call rather than a special operation could be considered as obscuring the special nature of the operation. |
||||||||||||
|
|
|
|
|||
|
|
|
|
I reckon there is no reason. Its a = new a just because it was first drafted that way. In hindsight, it should probably be a = a.new(); |
||||||||||||||
|