Tagged Questions
1
vote
3answers
77 views
What is the correct way to initialize an instance of an object within matrix of struct?
What is the correct way to initialize an instance of an object within matrix of struct?
My constructor Cita(int, int) need two parameters to create a new instance, but when I compile the program my ...
0
votes
4answers
51 views
python - another class inside constructor
I'm new to Python and I'm having a hard time understanding how I can do the following in Python (e.g how I would do in Java)
class Person{
private String name;
private Address address;
public ...
0
votes
1answer
32 views
How to add a property in the DOM Object's constructor.prototype in Internet Explorer<=IE8?
I want to add some custom properties to the prototype of the DOM Object,I am able to access the Object.constructor.prototype and add properties when I am working with Firefox or Chrome but can't ...
0
votes
7answers
49 views
URL as field in Java Object
I have an object which contains a field of type String, with a value similar to "http://stackoverflow.com"
I have a method which must take a URL. So I am wrapping that in a method which takes the ...
0
votes
4answers
65 views
C++ Enum Returning Function to be Used in Constructor
I want to return an enum value from function, as my constructor requires an enum value to be created.
My class :
class myBasket{
enum myType {type1, type2, type3} MT;
public:
myBasket(myType ...
0
votes
2answers
54 views
Object-Natured Functions
Context
I've noticed that some functions can only be called with the new prefix. When called without it, the error Illegal Invocation is thrown. Below is two examples of how the console reacted when ...
0
votes
1answer
45 views
Passing an array of object from one class to another
I've been trying to create a program where it takes an array input through an object and passes the parameter (simulation of ArrayList).
I keep getting the java.lang.ArrayIndexOutOfBoundsException ...
0
votes
2answers
19 views
trying to add a stats object to a DoublyLinkedList
Im trying to add a Stats object which would be a player with first, last name ,level and experience. I have that set up in a Stats.h. But my problem is in the main i cannot figure out how to add the ...
4
votes
0answers
64 views
constructor chaining C# tutorial [closed]
I am preparing a demo for someone very new to C#(although i am fairly new myself) to illustrate constructor chaining. I am able to get a working demo of constructor chaining code to work but I think i ...
0
votes
1answer
32 views
Can't use an element of a list as an argument in an object's constructor
final int NUM_OF_SERVERS = 2;
List<Database> databases = new ArrayList<Database>();
for (int i = 1; i < NUM_OF_SERVERS; i++){
Database database = new ...
0
votes
4answers
71 views
Java constructor basics: objects and fields with no current value
I have a couple of questions about constructors in Java:
How are you supposed to initialise/create objects that the class relies on? For example, I have a DateTime object in my 'time' class. Should ...
0
votes
1answer
51 views
How can I resize a 2D vector of objects given the width and height? C++
My class, GameBoard, has a member variable that is a 2D vector of an object of the class: Tile. The GameBoard constructor takes width and heigh as parameters. How can I get the 2D vector of Tile ...
0
votes
2answers
96 views
C++ constructors (speed)
I read sometimes when i am calling constructor, it creates temporary object and then copy it to true variable. So i shouldn't put some things into constructor, for example counter of created objects ...
1
vote
1answer
31 views
PHP ORM how to set id in constructor
I have a basic problem with following code:
<?php
interface UserInterface
{
public function getId();
public function getName();
}
class User implements UserInterface
{
private $_id;
...
-1
votes
6answers
243 views
no suitable constructor exists to convert from “test *” to “test”, constructor,
I'm new to c++ and I'm having difficulties with constructor and classes. So, here is my header file:
#pragma once
#include <string>
using namespace std;
class test
{
private:
string ...
-1
votes
2answers
49 views
child constructor
ok so this problem has been solved but all the solutions really only work in simple programs and i hope to find a more efficient way to do this. so lets assume I have this code
public class Parent
{
...
1
vote
2answers
47 views
Ruby cancel object creation
How to cancel object creation if get wrong params?
Example:
class MyClass
def initialize(a, b, c)
@a = @b = @c = nil
@a = a if a.is_a? Integer
@b = b if b.is_a? String
...
1
vote
4answers
84 views
Make a pointer to an object in the constructor C++
I would like to know how to make a pointer to a newly created object in the constructor in c++?
What is the address of a class?
class MyClass
{
public:
};
class MyClass2
{
public:
//I ...
1
vote
4answers
107 views
JavaScript: Creating an object generically from its type and calling its constructor
Say there's a JavaScript object with a childType property, which is an object constructor, and you want to write a generic addChild method. It needs to create an instance of this.childType, and invoke ...
-1
votes
3answers
44 views
Creating global API object
I'm using the module-via-anonymous-function-pattern in java-script to have an anonymous function that embodies the whole module and exposes specific public API parts by setting a global property.
I ...
0
votes
5answers
125 views
Constructor code does not execute before object is created JAVA
I have recently played with code in java, and encountered this problem, that the code inside the constructor seems to be not executed, as the compiler throws the NullPointerException.
public class ...
1
vote
1answer
102 views
Is it possible to reuse constructor?
I got one class named FaultsTablemanager, it has two constructors:
class FaultsTableManager : public QObject
{
Q_OBJECT
public:
FaultsTableManager(MainWindow* mainW,
...
0
votes
1answer
34 views
Add DataCollection properties while Initialize Objects by Using an Object Initializer
Add properties while Initialize Objects by Using an Object Initializer . But how can we add DataCollection property?
Example:
class Student{
public string FirstName{ get; set} ;
...
0
votes
4answers
67 views
Constructing objects while adding to ArrayList
public class ComputerKit {
private ArrayList <ComputerPart> parts = new ArrayList();
//constructor
public ComputerKit(ComputerPart ... cp){
for(int x=0;x<cp.length;x++){
...
0
votes
1answer
47 views
variables for different objects of same type made in constructor all referencing the same object
this is my first time posting here and also I'm new to Python,so please be patient with me if I'm something wrong! I've seen a similar question to this but couldn't see a clear solution. This must ...
0
votes
1answer
115 views
Cannot instantiate the type for class object (Java)
Here's the code where I'm receiving the error (at the second "Killer" after "new").
String[] classes = new String[5];
kills[0] = "Brian Moser";
kills[1] = "James Doakes";
kills[2] = "Lila Tourney";
...
2
votes
1answer
388 views
Javascript: TypeError: … is not a constructor
I have a typeError problem:
function artist(name) {
this.name = name;
this.albums = new Array();
this.addAlbum = function(albumName) {
for (var i = 0; i < this.albums.length; i++) {
...
0
votes
4answers
45 views
why do I get a strange answer?
So I'm working on basic class constructors. The problem is, the answer I get when I use the dot operator to find the speed of my Horse object makes little sense and I would like to know whats going ...
1
vote
3answers
39 views
Unsure why method is spitting out what its spitting out
This seems like such a dumb question but...
If we have a constructor:
function Candy(name) {
this.name = name;
}
and we extend the prototype of this object Candy:
Candy.prototype.printName ...
4
votes
2answers
75 views
Difference in instancing object - C# basic [duplicate]
I am beginner in object oriented programming and I have one simple question. What is difference between:
public class Calculation
{
private _externalObject = new ExternalClass();
public ...
0
votes
2answers
45 views
JavaScript - Using object prototypes to extend the usage of a method?
I am very new to JavaScript, and when working with my object's prototype I try to call the current object to extend a method but it is not working. So I google'd my problem but didn't really get ...
0
votes
1answer
78 views
Can I call a method on other objects created by the same constructor in javascript?
Lets say I have an object constructor that a third-party page developer can insert in their page, called "Widget". It could be something like a tooltip, for example.
var Widget = function(settings, ...
0
votes
1answer
40 views
learning to crate object and access methods inside the class how can i..?
my execution shows this error:
java.lang.NoSuchMethodError: main
I need to get students detail as output. The program should access all the above methods. Please help.
import java.io.*;
...
0
votes
1answer
40 views
Want to run an Object Array into a Generic Constructor
class CircularArrayDeque<E> implements Deque {
private E[] items;
private int currentSize, capacity, front, back;
private static final int DEFAULT_CAPACITY = 10;
public ...
0
votes
4answers
87 views
C++: Inside a method can one create an uninitialised object from the class?
Inside a method can one create an uninitialised object from the class?
Here's some context: imagine a class where the constructors all allocate memory:
class NumberArray
{
size_t m_Size;
int ...
0
votes
3answers
30 views
Javascript object: How to create a working object inclusive encapsulation?
I want to use objectoriented Javascript, but the behaviour of my "object" is not as I expect them to be.
This is my object:
var Test = function(a){
var variable = a;
this.getA = function(){
...
-1
votes
1answer
67 views
Calling a specific constructor of a class from within another class
In the project I'm working on, I have an outer class named "Camera", and inside this class I am tring to instantiate an object defined by a class named "Frame". The Frame class has this in it's ...
0
votes
1answer
52 views
Can objects be created with default constructor when there is a defined one in a php class?
Yes I am confused whether the default constructor(the one automatically made when the class is made and is parameter-less) is still available for construction of an object when I have also defined a ...
0
votes
4answers
64 views
Javascript Object Constructor & boolean variable
I am trying to create a JS Object constructor but want to declare one of the properties for the object with a boolean operatoin. Somehow I am getting this wrong - please advise!
Thanks!
A.C.
...
1
vote
3answers
87 views
Displaying object name inside destructor
Inside FileTwo.h
#include"iostream"
using namespace std ;
class FileTwo{
public:
FileTwo(){
cout<<"constructor for";//Here want to show the object for which the ...
2
votes
1answer
109 views
When using !(self::$_instance instanceof self) why does this fail to work
I recently had written some code to deal with instantiating a object, assigning a object and some data to the objects properties and then perform a call to a method in order to do something.
But when ...
1
vote
4answers
167 views
Java error: cannot find symbol from object array
I've looked around and tried to solve this issue by recompiling my other classes etc but nothing seems to work.
I have two files, in SensorDataDisplay.java I have the following code:
private ...
3
votes
3answers
63 views
Is this an ordinay function, a constructor or neither?
I use to enjoy using js. Now I am just frustrated. I am trying to jsDoc a large chunk of code that was purchased by my boss. The author did not provide an API so I am going to create one using jsDoc.
...
0
votes
2answers
104 views
Creating object in C++ , what if already constructed?
I am still new to c++. I want to read in messages from several sources. Each source will begin data messages with a 4 char ID. Each will also have several data messages. No one message has all of the ...
2
votes
6answers
92 views
Java: Passing the same objects to each others constructor
Evening everyone.
I seem to have hit an odd problem when trying to pass an object to another objects constructor who's constructor also relies on the object it's being passed to.
For instance, take ...
2
votes
2answers
142 views
invoking constructor in java
class A {
A() {
System.out.print("A");
}
}
class B extends A {
B() {
System.out.print("B");
}
}
class C extends B {
C() {
System.out.print("C");
}
}
...
1
vote
3answers
107 views
Is passing a reference to an object discouraged in Java? [closed]
I'm a self-taught programmer, and like many other noobs I once struggled with the classic "passing data between forms" problem. When I was building my first chat application in Java around a year ago, ...
1
vote
2answers
42 views
Java constructor script
does anyone know of an existing script to create java objects based on constructor?
I was thinking about writing one but decided to see if one already exists because it seems pretty simple.
...
3
votes
3answers
230 views
Copying an Object in Java without affecting the original via copy constructor
I'm trying to copy an Object, which will then be modified, without changing the original object.
I found this solution and it seemed the best approach would be a copy constructor - from my ...
0
votes
2answers
48 views
Java - constructor apparently missing, operators overloaded
I've declared a new "world" object in another class like so:
fray.World world = new fray.World();
the java compiler is complaining it can't find the constructor (it's fine with the position of the ...



