Path: utzoo!attcan!utgpu!jarvis.csri.toronto.edu!rutgers!columbia!read.columbia.edu!kearns From: kearns@read.columbia.edu (Steve Kearns) Newsgroups: comp.lang.c++ Subject: Re: assignment to `this' is deprecated in C++ 2.0 Message-ID: <6355@columbia.edu> Date: 7 Jun 89 18:36:36 GMT References: <9432@alice.UUCP> Sender: news@columbia.edu Reply-To: kearns@read.UUCP () Organization: Columbia University Department of Computer Science Lines: 20 What will happen with declaration of a "stack" variable: { TypeT T; ... } Does new() get called with some indication that allocation on the stack is expected? Is new() not called? I assume that when a vector is newed(): { TypeT * tp = new TypeT[100] ... } then new gets passed 100*sizeof(TypeT)? -steve