Tag Info

New answers tagged

0

It's better to the second in my opinion so the compiler can precompile the code. But there is no real difference in the code.


0

As an alternative, this should work for you. Same principle as explained by @Ted Hopp But now we have a reusable function createGetterSetter which uses the ECMA5 method Object.defineProperty for defining the getters and setters, as pointed out by @Benjamin Gruenbaum. It is also using the ECMA5 Object.keys instead of for..in that you used. I think this ...


2

You are creating a closure that gets evaluated when the getter/setter functions execute, not when they are defined. At the time they execute, prop has the last value it was assigned during execution of the loop. You need to avoid creating a closure on prop. One way is with an IIFE. Instead of using this argument: function () { return obj[prop]; } use ...


0

The other point we're missing here is that to pass a function as a parameter you do not use parentheses at all. Here's an example of passing a function as a parameter: #include <algorithm> #include <vector> #include <iostream> // initialise sum and summing function int sum = 0; void sum_numbers( const int& number ); // Create a test ...


0

A(20); is a statement which constructs a new instance of A, not a call to A's constructor on this. You can't call another constructor overload inside a given constructor in C++03. However, you can achieve the same effect by using placement new. new (this) A(20);


4

I believe A(20); is constructing a different instance of A within that constructor, not invoking the other constructor on the same instance. See c++ call constructor from constructor for how to invoke another constructor from a constructor. If you are using a compiler that supports C++11, I think you can achieve what you want with this definition of the ...


2

You have a declared constructor of DormRoom in your dormroom.h header file. You don't need to declare in any other place. In main function you only create new objects, using a constructor declared before. By the way, it is a good practice to not to add an implementation of functions, classes etc int header files. You should divide into two separate .cpp and ...


3

It looks to me like this might be confusion with the word "declare." Your teacher says declare the constructors, then gives the example DormRoom specialA(1, numberInRoom1);. I believe he/she technically means "declare with the constructor". The constructor itself has already been declared in the header file, and you don't absolutely need a default ...


0

I think in your question there is a confusion between "constructor" and "default constructor". A constructor is any function with the name of the class, which in this case has 2 parameters: DormRoom(int roomNo, int number); A default constructor is a constructor that can be called without parameters (default parameters are allowed). Default constructors are ...


1

when you call Parameter() a temporary object is created and passed to foo.push_back() function. Previously you declared the object with name Parameter a; and passed it to like this foo.push_back(a). By doing like this you can use the object named a down the line of your program.


0

You are not passing a constructor, but instead passing a temporary object. When you do Paramater() because of the pharenthesis, it creates a object. Its kind of like a function call for example getInput().


2

That line will create a temporary instance of Parameter and copy it into Foo. Assuming this is pre-C++11 code. The new std::vector<T>::push_back has an overload for rvalues in which case there will be no copies.


4

foo.push_back(Parameter()); is passing a temporarily constructed Parameter object to push_back and not the constructor i.e. Parameter() is a call to create an object of type Parameter on the stack and pass it to the push_back function of vector, where it gets moved/copied. Thus what gets passed is not the constructor itself, but a constructed object only. ...


1

I think it will be same to create new object with same prototype like this: function newClass(){ alert('new class with same prototype'); } newClass.prototype = constructorQuestion.prototype;


5

The constructor is a property of the prototype of the function, not the function itself. Do: constructorQuestion.prototype.constructor = function() { alert("new constructor"); } For more information see: http://stackoverflow.com/a/8096017/783743 BTW, if you expect the code howComeConstructorHasNotChanged = new constructorQuestion(); to alert "new ...


0

So make private of inner class. public class Outer { private class Inner {} public String foo() { return new Inner().toString(); } } you can't legally call the private default constructor because it is private


1

It is possible. Declare your inner class public, but its constructor private. This way you can create it only inside your enclosing class and itself, but not from outside.


0

By default,If you want to get the instance of the inner class you need to have the Outer class first. A inner class is a member of its enclosing class. You need not to do anything for that. Non-static nested classes (inner classes) have access to other members of the enclosing class, even if they are declared private I hope I understood your ...


4

You can just say m_BoundingBox(). This will value-initialize the member, which means default-construct for class types and zero-initialize for scalar types.


0

public class B { private A[] arrayOfAs; public B (int number) { this.arrayOfAs = new A[number]; } public getAs() { return this.arrayOfAs; } } Not above that arrayofAs is not static, because you don't want to share your array among all instances of B. I also made it private because that is considered good practice for instance ...


0

This is what you should be writing. class B{ public A[] myArray; B(int number){ myArray = new A[number]; } }


2

Couple of pointers Don't use static, unless you want to share the array of A objects with every instance of class B. You do however need to use [] while declaring the reference to indicate that it's an Array. Make your member fields private as well. Then control access to them through public or protected getter/setter methods. Your code should look like ...


0

class B { public A[] myarray; B (int number){ myarray = new A [number]; } it would be good to practice to use instance variables in private or protected mode, and using getter and setter methods to access it. This code will just create a un-initialized array of A objects only. If you want to use those, you need to init them seperately like myarra[i]=new ...


1

If you want to create an object of class A inside the constructor of class B you can simply do it like this: class B { public A object; B (int number){ object= new A(); } class A{ } If you want to create an array of A class then do not make the variable as static. class B { public A[] myarray; int number = 5; ...


0

Everything depends on concrete context. Constructor is just another method, with special duty to construct (allocate memory) for your instance. You can construct object inside another thread, or block thread inside constructor, but it has nothing to do with constructor itself. Blocking is about a flow of your program.


3

No, it does not. It's possible for this specific constructor to be doing something that is causing other threads to block, but the act of calling a constructor doesn't, in and of itself, block all other threads. One thing you may be noticing though is that the garbage collector does need to block the execution of all threads when it's running. If you have ...


3

Instead of defining your constructor as a variable Bar that is set to an anonymous function, you can either do this: function Bar() {} Or this: var Bar = function ConstructorNameHere() {}; Where the ConstructorNameHere name can actually be Bar again: var Bar = function Bar() {}; (That should work in Chrome and FF, not sure but not very hopeful about ...


7

Change dog = Dog.call(dog,"Rowdie"); to Dog.call(dog,"Rowdie"); When you call a function with new, then this is implicitly returned, i.e. the function behaves as if you had return this; at the end. From the MDN documentation: The object returned by the constructor function becomes the result of the whole new expression. If the constructor ...


1

1) you can't refer to an object while it is building. If you use 'this' when computing the property value, you'll use the current context, not the new object : function someFunc() { var functionThis = this; var aNewObject = { a : 3, b : this.a *2 // nAn : this.a == functionThis.a ...


3

The static constructor will start executing before the instance constructor, but you can still call the instance constructor... and indeed this is a common approach for implementing a singleton. For example: public sealed class Singleton { // I'd usually make it a property in real code, backed by a readonly field public static readonly Singleton ...


1

Replace facingLeft ? -3 : 3 with facing ? -3 : 3, since you cannot reference the property of an object not yet created (namely "facingLeft"). See, also, this short demo.


7

A class can have several default constructors. However in that case, you cannot default-construct it because when trying to do so, you'd run into an ambiguity: class C { public: C(); // a default constructor C(int = 0); // another default constructor }; C c1; // error: ambiguity; both C::C() or C::C(int) with the default argument 0 match C c2(0); // ...


0

Definitely not. If I wrote: A a = new A("foo", "bar", " "); then which constructor would I have called? Your options are to use a static method, i.e.: public static A withXYZ(String x, String y, String z) { final A a = new A(); a.x = x; a.y = y; a.z = z; return a; } A myA = A.withXYZ("foo", "bar", " "); Otherwise you could ...


6

No, but a quick solution is to use static helpers: class A { /** Constructor. Protected. See static helpers for object creation */ protected A(String x, String y, String z, String a) { this.x = x; this.y = y; this.z = z; this.a = a; } /** Construct a new A with an x, y, and z */ public static A fromXYZ(String x, String y, String ...


7

You cannot do that. You cannot have two constructors with the exact same signature, nor two methods with the exact same signature. Parameter names do not matter. One solution is to use what is called static factory methods: // in class A // Parameter names could be "tar", "feathers" and "rope" for what it matters public static A withXYZ(String x, String y, ...


2

In short: No. Long answer: How different are they? If they're very different you might want to consider creating a base class and extend it. Another option would be to create a StringType enum and pass it with the constructor. Generally if you have two similar constructors, you need to review your design.


7

Is it possible to implement the following No. Because the compiler has no built-in crystal ball in order to choose the appropriate constructor at compile time. Please be aware of two points: The parameter names in the constructor signature are lost after compilation - they are pure human sugar. So they cannot be use to dispatch between both ctors. ...


0

public class UploadService extends IntentService { Your Service is an inner class. If you want to keep it inside Activity, change it to static: public static class UploadService extends IntentService { You may want to read about different types of nested classes. First link from google: http://docs.oracle.com/javase/tutorial/java/javaOO/nested.html


0

In both functions, _self is equal to this and could be safely removed. Most likely this is just a convention, possibly from having to declare _self when wanting to access it in eg. a callback: var _self = this; on(someButton, 'click', function() { this.foo() // this !== _self _self.foo() // used to access properties of the original context }); ...


0

Not sure what you are asking here. But Overloading is not only for Constructors. That can be for other methods too. Here are the rules (My). You can have same method name, but the parameters should be different. Example: Constructor Overloading public Car() { } private Car(int speed, int maxSpeed) { //... } public Car(String make, String model) { ...


0

A java class can contain two or more methods with the same name, provided that those methods accept different parameters. That is called overloading. When you create overloaded methods every method must have a unique signature.


1

Try to pass Context of your activity . if you declaring it in an initialiser or innerclass use YOURCLASSNAME.this instead of this for example : AQuery aq= new AQuery(MyActivity.this)


0

That works just fine. To make code clearer you could move common initialization to base class like this: using namespace std; class Base{ public: Base(){ //common init } virtual void log() = 0; }; class A : public Base{ public: A():Base(){ log(); } virtual void log(){ cout << "logging A\n"; } }; class B: public Base{ ...


0

Implement IClientMessageInspector interface to send your custom authentication info with each call. Then implement IDispatchMessageInspector to validate the headers on the service side. Here you can find more about message inspectors in WCF. Message inpectors should also contain operation info so you can use it to allow anonymous access to some service ...


0

Print the foo() and i by using two cout statements as follows, cout << "i of foo = " << foo(); cout <<"\ni in main = " << i << endl; The output will be i of foo = 3 i in main = 10 Earlier you were getting 3 0 as output because the overloaded operator << was being evaluated from left to right by your ...


0

At the moment you are passing the 'i' as the argument, it's value is zero. The foo() will change the value in the destructor to 10 AFTER that. As juanchopanza suggested, add another line std::cout << i; and you will see what you expect, because at that point the value is 10.


5

There are two important points to consider here: The order of evaluation of arguments to a function is Unspecified. So either: foo() gets executed first or i gets printed first It is specific to your compiler. Looks like your compiler evaluates argument from right to left, hence the global i which is 0 gets evaluated as 0. Remember that ...


1

Its because return value gets copied after destructor. I gets printed first and foo gets called later so the output 3 0. If you print like below cout << "i = " << i <<" " << foo()<< endl; you will see 10 3 as output.


-1

See Oracle documentation here: http://docs.oracle.com/javase/tutorial/java/javaOO/methods.html Under the section "Overloading Methods"


0

The constructor: // Define constructor ZoneWatch(int azone) public int ZoneWatch(int azone) { zone = azone; } is erroneous, as a constructor cannot have a return value explicitly defined. In this case int. Remove int, and that error should go away. The same goes for any other constructor with return values defined.



Top 50 recent answers are included