473,385 Members | 2,013 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Using the arguments object when instantiating via constructor function

Sorry, bad title. Anyway, is there a way to pass the arguments to an object
instantiated via a constructor using the arguments object and have it
expanded, so to speak, so that it doesn't appear as a single argument? I'm
sorry, this explanation is just atrocious, but I can't think of exactly how
to word it. Maybe an example...

Take for instance Function.apply. It takes 1-2 arguments, the first being
the object to use as the context, and the second being either an array or an
instance of the arguments object which are to be the arguments for the
function. I want to do something similar but I want to also basically use
the new operator so that I get back an object.

Here's a snippet of some of my code, maybe this will help:

function Singleton()
{
this.construct.apply(this, arguments);
}

Singleton.extend(JSClass);

Singleton.instance = null;

Singleton.getInstance = function()
{
if(!this.instance)
{
//I want to be able to combine these two lines. If I just do new
this(arguments), then the constructor
//thinks there is only one argument; the arguments object isn't
expanded.
this.instance = new this();

this.instance.construct.apply(this.instance, arguments);
}

return this.instance;
}

function Test()
{
this.construct.apply(this, arguments);
}

Test.extend(Singleton);

Test.getInstance = function()
{
return Test.supers["Singleton"].getInstance.apply(this,
arguments);
};

Test.prototype.name = null;

Test.prototype.construct = function()
{
switch(arguments.length)
{
case 0:
this.name = "Test";
break;
case 1:
this.name = arguments[0];
break;
}
};

Anyway, I hope that despite this rather terrible explanation I've somehow
managed to get my point across. Any help would be much appreciated.

Thanks.

Matt
Jul 20 '05 #1
9 3772
> Sorry, bad title. Anyway, is there a way to pass the arguments to an object
instantiated via a constructor using the arguments object and have it
expanded, so to speak, so that it doesn't appear as a single argument? I'm
sorry, this explanation is just atrocious, but I can't think of exactly how
to word it. Maybe an example...

Take for instance Function.apply. It takes 1-2 arguments, the first being
the object to use as the context, and the second being either an array or an
instance of the arguments object which are to be the arguments for the
function. I want to do something similar but I want to also basically use
the new operator so that I get back an object. .... Anyway, I hope that despite this rather terrible explanation I've somehow
managed to get my point across. Any help would be much appreciated.


I'm unclear on what you want to do. Can you give us a brief specification? It is
difficult to sort through your code and try to guess what its intended effect
is.

Jul 20 '05 #2
Yeah, I'm sorry, I can't think of how to say it.

Okay, you know how with the apply() method of the Function object, you could
essentially string together a function calls without knowing the arguments
actually sent to the function? Something like:

function func_1()
{
func_2.apply(arguments);
}

function func_2(foo, bar)
{
//etc
}

....

function someFunction()
{
//blah
func_1("bleh", 5);
}

I was wondering if there was essentially a way do the same kind of thing
when creating an object via a constructor function. Something like:

function func_1()
{
//If you do this, the arguments array for the constructor function has only
one argument, and that's another
//argument array. I want this to be expanded in a similar fashion to the
apply() method.
new this(arguments);
}

function TestClass()
{
this.blah = arguments[0];
this.blah2 = arguments[1];
}

function func_2()
{
func_1.apply(this, arguments);
}

function someFunction()
{
func_2("bleh", 5);
}

I still think I'm doing a horrid job explaining this, and I'm really sorry.
I just can't think of how to explain it.

Matt
Jul 20 '05 #3
Hi,

Matt Eberts wrote:
Sorry, bad title. Anyway, is there a way to pass the arguments to an object
instantiated via a constructor using the arguments object and have it
expanded, so to speak, so that it doesn't appear as a single argument? I'm
sorry, this explanation is just atrocious, but I can't think of exactly how
to word it. Maybe an example...

Take for instance Function.apply. It takes 1-2 arguments, the first being
the object to use as the context, and the second being either an array or an
instance of the arguments object which are to be the arguments for the
function. I want to do something similar but I want to also basically use
the new operator so that I get back an object.


Is this what you mean?

function CTest()
{
this.m_strArg1 = "";
if ( arguments.length > 0 )
{
this.m_strArg1 = arguments[ 0 ];
}

this.m_strArg2 = "";
if ( arguments.length > 1 )
{
this.m_strArg2 = arguments[ 1 ];
}
}

CTest.prototype.alert = function()
{
alert( this.m_strArg1 + "\n" + this.m_strArg2 );
}

var oTest1 = new CTest();
oTest1.alert();

var oTest2 = new CTest( "Hello" );
oTest2.alert();

var oTest3 = new CTest( "Hello", "World" );
oTest3.alert();

Laurent
--
Laurent Bugnion, GalaSoft
Webdesign, Java, javascript: http://www.galasoft-LB.ch
Private/Malaysia: http://mypage.bluewin.ch/lbugnion
Support children in Calcutta: http://www.calcutta-espoir.ch

Jul 20 '05 #4
Matt Eberts wrote:
Sorry, bad title. Anyway, is there a way to pass the arguments to an object
instantiated via a constructor using the arguments object and have it
expanded, so to speak, so that it doesn't appear as a single argument? I'm
sorry, this explanation is just atrocious, but I can't think of exactly how
to word it.


No, this is not directly possible in javascript. The new operator
invokes both the [[Construct]] and [[Call]] properties of the
constructor function following the "new" operator. So the line

var bar = new Foo.apply(thisObject, argumentsArray)

would attempt to create a new Function.prototype.apply object, which (in
Mozilla at least) raises an exception because apply can not be called in
isolation.

Choices of solution lie between rewriting the program with simpler
logic, adding additional logic to the constructor function - say by
testing for magic arguments or flag variables located outside the
execution context of the constructor - or creating a generalised
mechanism to effectively split [[Construct]] and [[Call]] processing in
javascript. A function to achieve the last might go:

Function.prototype.newApply = function (constructor, argsArray)
{ function dummy(){};
dummy.prototype = constructor.prototype;
var newObj = new dummy();
var obj = constructor.apply(newObj, argsArray);
if(obj && typeof obj == "object")
return obj;
return newObj;
}

The [[Call]] property of the dummy inner function is invoked, of course,
but intentionally doesn't do anything. newApply would then be called as

bar = Foo.newApply( argsArray);

or even

bar = new Foo.newApply( argsArray);

(although this would create a new object that is immediately discarded).

--

Dom
Jul 20 '05 #5
Whoops!

Sorry, getting tired over here... I rewrote an earlier version of
newApply as a method of Function.prototype and forgot to change the
first argument into the "this" object. Code example should read:

Function.prototype.newApply = function (argsArray)
{ function dummy(){};
dummy.prototype = this.prototype;
var newObj = new dummy();
var obj = this.apply(newObj, argsArray);
if(obj && typeof obj == "object")
return obj;
return newObj;
}

Tested in Mozilla only

--

Dom
Jul 20 '05 #6
> Yeah, I'm sorry, I can't think of how to say it.

Okay, you know how with the apply() method of the Function object, you could
essentially string together a function calls without knowing the arguments
actually sent to the function?

I was wondering if there was essentially a way do the same kind of thing
when creating an object via a constructor function. Something like:

function func_1()
{
//If you do this, the arguments array for the constructor function has only
one argument, and that's another
//argument array. I want this to be expanded in a similar fashion to the

I still think I'm doing a horrid job explaining this, and I'm really sorry.
I just can't think of how to explain it.


Are you asking if it is possible to wrap a Constructor with a function that
takes an array that will be applied to the constructor?

If so, is it

var myObj = ConstructorWrapper([array]);

If so, then trivially,

function ConstructorWrapper(a) {
return Constructor(a[0], a[1], a[2], ...);
}

But from your description, I'm not sure at all that that is what you want. If
you can't describe something, how can you ever hope to implement it correctly?

Jul 20 '05 #7
> No, this is not directly possible in javascript. The new operator
invokes both the [[Construct]] and [[Call]] properties of the
constructor function following the "new" operator. So the line

var bar = new Foo.apply(thisObject, argumentsArray)

would attempt to create a new Function.prototype.apply object, which (in
Mozilla at least) raises an exception because apply can not be called in
isolation.


Okay, I kind of figured that it wouldn't. Thanks for the explanation.

Matt
Jul 20 '05 #8
Whoops squared!

After getting some sleep, I realise that the idea of calling newApply as
a method of a constructor function *and* preceding the call with a new
operator will trigger the same problem it is trying to solve, which was
to work around:

The new operator determines the object value of a following
constructor before calling it and supplying a "this" value set to a new
object. In the process, the constructor necessarily loses knowledge of
the object of which it itself may be a method.

--
Dom

Jul 20 '05 #9
> Whoops squared!

After getting some sleep, I realise that the idea of calling newApply as
a method of a constructor function *and* preceding the call with a new
operator will trigger the same problem it is trying to solve, which was
to work around:

The new operator determines the object value of a following
constructor before calling it and supplying a "this" value set to a new
object. In the process, the constructor necessarily loses knowledge of
the object of which it itself may be a method.


Get some more sleep, man.

Jul 20 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

28
by: Daniel | last post by:
Hello =) I have an object which contains a method that should execute every x ms. I can use setInterval inside the object construct like this - self.setInterval('ObjectName.methodName()',...
4
by: Tony Johansson | last post by:
Hello Experts! I have this constructor for class Flight. Flight::Flight(string flight_no, Klocka dep_t, Klocka arr_t) : no(flight_no), dep(dep_t), arr(arr_t) {} Both dep and arr are...
7
by: hazz | last post by:
this is a repost with more concise code (well, for me) and better questions (I hope....) . given the following two classes, my intent is to use either Activator.CreateInstance or InvokeMember pass...
12
by: Joe | last post by:
Hello All: Do I have to use the LoadControl method of the Page to load a UserControl? I have a class which contains three methods (one public and two private). The class acts as a control...
5
by: Anders Borum | last post by:
Hello! Whilst refactoring an application, I was looking at optimizing a ModelFactory with generics. Unfortunately, the business objects created by the ModelFactory doesn't provide public...
41
by: Telmo Costa | last post by:
Hi. I have the following code: -------------------------------------- function Tunnel() { //arguments(???); } function Sum() { var sum = 0; for (i=0; i<arguments.length; i++) sum +=...
14
by: B Williams | last post by:
I am stuck on an assignment that uses classes and functions. I am receiving numerous errors when I try to run a test program to see if I wrote it correctly. Can someone please point me in the right...
36
by: Pacific Fox | last post by:
Hi all, haven't posted to this group before, but got an issue I can't work out... and hoping to get some help here ;-) I've got a base object that works fine with named arguments when called...
61
by: Sanders Kaufman | last post by:
I'm wondering if I'm doing this right, as far as using another class object as a PHP class property. class my_baseclass { var $Database; var $ErrorMessage; var $TableName; var $RecordSet;...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.