Tagged Questions
0
votes
1answer
23 views
call to public variables to via object
$sql=$pardConfig->prepare("SELECT * FROM ".$this->menu); i want to call to the db table dynamically.in here it was selecting only the menu.i want to call it from object ???
<?php
...
1
vote
3answers
48 views
Print name of constructor variable
Say, I have 2 constructors assigned to 2 variables:
var example1 = function(argument1){
this.argument1 = argument1;
}
var example2 = function(argument2){
this.argument2 = argument2;
}
And ...
-5
votes
4answers
68 views
How to send an Object through a constructor?
I am currently facing a problem and can't find the way. Here is the question...
Complete the Point class bellow:
public class Point{
private int x;
private int y;
public Point(int x, int y){
...
7
votes
4answers
57 views
Can PHP objects be constructed and their variables set in one operation?
In perl I'm used to doing
my $foo = new WhatEver( bar => 'baz' );
and now I'm trying to figure out if PHP objects can ever be constructed this way. I only see this:
my $foo = new WhatEver();
...
0
votes
3answers
42 views
Is this a regular constructor function?
So I've been looking at a script for a game which I've downloaded. The thing I'm unsure about is Bullet(I) is never instantiated within the script (ie var x = new Bullet). The tutorial refers to this ...
-4
votes
3answers
91 views
can we use object of a class inside a constructor ? Getting error
Class Date {
int d , m, y ;
public:
Date ( int dd = 0 , int mm = 0, int yy = 0) ;
}
Date:: Date ( int dd , int mm, int yy ) {
d = dd ? dd : today.d ; Error // Today was not declared ...
1
vote
1answer
70 views
Global object constructor isn't getting called
Somehow my global objects are created without having their respective constructors called:
static int num = 0;
class TestClass
{
public:
int a;
float b;
TestClass(float f)
{
a ...
1
vote
1answer
49 views
c++ object initialization and constructor semantics
Is there a difference between the 2 initailizations of an object.
Object obj(constructor_arguments);
or
Object obj = Object(constructor_arguments);
Note that the second initialization is not ...
0
votes
1answer
39 views
Why is a function within an object constructor altering all objects previously created by that constructor?
I have a function within an object constructor that is altering all objects created by that constructor. I'm not sure why. Could someone please take a look at my code and tell me what I'm missing?
A ...
1
vote
2answers
81 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
56 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
40 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
53 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
66 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
55 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
69 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
20 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 ...
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
76 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
67 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
98 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
36 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;
...
0
votes
6answers
365 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
50 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
49 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
88 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
121 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
49 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
141 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
106 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
44 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
69 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
51 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
183 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
640 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
46 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
43 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
77 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
55 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
43 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
92 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
33 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
69 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
54 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
69 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
96 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
142 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
181 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 ...



