0
votes
1answer
31 views

How to assign pointer of an “array of object” (C++)

I am a beginner in C++ that confused over dynamic array. I found a way to do it in this site, but I can't seem to make it work for "array of object" in an object. It always break when I read the Rec ...
-1
votes
0answers
24 views

Accessing data from an object array in python

i have an object array which when printed gives following output : (TopicArray){ Topic[] = (Topic){ sectionid = "news" webtitle = "24 hours in pictures" tid = 1 }, (Topic){ sectionid = "society" ...
1
vote
3answers
48 views

Adding objects to an array from an implemented class

Good morning, my apologies if this question is complex/confusing. I am in an intro java course and I am having some difficulties with one of my assignments! You guys on here seem to have an answer for ...
0
votes
1answer
38 views

Conversion warning. and Class error

I'm learning C++, and in an assignment I'm doing right now, I get a bunch of warnings that I suspect are causing the two errors I'm getting as well. The problem is that the lines where the warnings ...
3
votes
5answers
59 views

Javascript perform .join on value in object array

If I have an array of strings, I can use the .join() method to get a single string, with each element separated by commas - like so: ["Joe", "Kevin", "Peter"].join(", ") -> "Joe, Kevin, Peter" I ...
0
votes
3answers
38 views

how can i make this jsonArray form?

I want to get this (four keys & values in one object): [{"sms":"Y","email":"Y","phone":"Y","oto":"Y"},{"sms":"N","email":"N","phone":"N","oto":"N"}] but this is result : ...
-1
votes
0answers
36 views

Accessing Object elements by index in JavaScript

I'm new to JavaScript and really confused by the Object type. My problem is in Unity3D, but I think this is a general JavaScript problem. I'm trying to communicate between browser JavaScript and ...
-4
votes
3answers
41 views

PHP Error: Cannot use object of type stdClass as array (array and object issues) [duplicate]

i was trying to copy this code. <?php foreach ($products as $product){ $id = $product['id']; $name = $product['name']; $description = $product['description']; $price = $product['price']; ...
0
votes
1answer
55 views

Write serializable object from Array

I have a little problem with this thing. I tried to make an array where the user enters data, and the data needs to be saved in an object.obj file. This is my code: import java.util.*; public ...
0
votes
1answer
54 views

c# Trying to get byte[] data from an object in an Array

I have been working on this one for a while, searching forums and Microsoft articles but so far none of what I have found has helps, so I need to ask the experts. I have been working with a COM ...
1
vote
0answers
47 views

How to get a property in a dynamically created Object in a dynamically created Array

Basically, I have this dynamically created object being sent back from a PHP script that I put into an array. I store where it's located in the array in the tools the user uses to select what to view ...
0
votes
2answers
92 views

Make one position in an array equal a new object

How to make one position in an array equal a new object? public SalesItem findItem(String itemCode){ SalesItem[] item = new SalesItem(); for (int i=0; i<size; i++) { ...
0
votes
1answer
38 views

javascript: access object (array) by array notation string

I would like to access the object provided only it's string path in form of array is known. 1.) there is an object, where root["obj1"]["obj2"] = 1; (in common case root["obj1"]...["objN"]) 2.) I ...
5
votes
2answers
67 views

What is the difference between these two array Iterations?

I'm studying PHP for an advanced exam. The practice test said that the first iteration is better than the second. I not figure out why. They both iterate the contents of an array just fine. // ...
0
votes
3answers
45 views

PHP Fatal error: Cannot use object of type stdClass as array

Hi I need a help on below, I know its raised in a past but I am currently struggling to figure it out the error Cannot use object of type stdClass as array on line ...
0
votes
1answer
33 views

Collect all records from database and checked the exist

I'm working in Yii framework and i have one problem . I have one table with amenities and i want to find it all. $amenities = RoomTypeAmenity::model()->findAll(); This command work fine . Then i ...
0
votes
2answers
42 views

javascript array member of object

I would like to create in javascript an object that contains an array of other objects. i.e. var xobj = { d: 0, e: 0, f: 0 }; var topObj = { x: [], a: 0, b: 0, c: 0 }; ...
0
votes
1answer
21 views

Counting data from array in object php

I'm new in php. When i print_r($documents), the system will display: Array ( [0] => stdClass Object ( [id] => 1 [title] => "AAA" [summary] => blablabla [score] => 100 [topic] => Technology ) [1] ...
0
votes
3answers
43 views

Passing an Array of object from activity to another generates me an error

i want to pass an array of objects from the MainActivity to the TheList Activity, but it generates me an Exception and my application crashes. Then i tried to pass a String array and that worked ...
0
votes
1answer
34 views

Populating a ListView with Objects from Parse.com Android

I'm trying to fill a ListView with objects from my database at Parse.com, but I'm am having trouble because the ListView does not accept objects directly. I've tried making an array of strings by ...
1
vote
4answers
125 views

Is int[] an object? [duplicate]

Had a look, and I can't seem to find a question that is the same as this. My question is about int[] in Java. When you create an int[], you use this syntax: int[] x = new int[5]; The methods that ...
0
votes
2answers
32 views

Adding data to object[][] for JTable object

I'm new to java and I want to take data that I have stored in a Map and add it to a table. As I was reading the java tutorials on "How to Use Tables" I found myself lost looking at the sample code ...
0
votes
2answers
88 views

c# how to retrive objects as values from array

I am trying to create a simple 'inventory' system that stores items with the key being an items name, and with the remaining information being stored as a value. However, I am having difficulty ...
0
votes
1answer
65 views

adding new object to an object array javascript

I solved this. you are right I was running a function which was the problem. If anyone wants to look at the solution I have attached it below. This was never meant to look nice just function. Thank ...
0
votes
5answers
82 views

Find index of object in array with highest value in property

I've got an array with objects: var articles = []; var article = {}; Simple loop that iterates x times { article.text = "foobar"; article.color = "red"; article.number = 5; ...
0
votes
1answer
39 views

Grouping javascript objects by a common value

I have a DB query which returns a bunch of location based data from my DB. I end up with a list of objects (which I put in to a single object and console.log() it to see whats inside). Each object ...
0
votes
1answer
33 views

Convert array objects to string and separate the values

I have the following result Array ( [0] => stdClass Object ( [name] => Identification ) [1] => stdClass Object ( [name] => Assay ) [2] => stdClass Object ( [name] => ...
0
votes
4answers
57 views

Java Null Pointer Exceptions

I am getting a null pointer exception that I cannot think how to fix. The array in question is a class array, and should be accessible to the method that is utilizing it. Here is the main method: ...
1
vote
1answer
40 views

Can't Access Attachment Data In Google Plus JSON

I am accessing the Google Plus API and this is one of the results that are returned: { "nextPageToken": ...
0
votes
0answers
24 views

Adding Row in JTable from a Vector of Object

I'm stuck here with this JTable, I hope you can help me out. I have this Class named CD which has (String name, String code, String description, String autor, String quantity) inside its ...
5
votes
2answers
84 views

creating arrays of objects in javascript

I'm learning javascript coming from a .NET background. I have a question about how to deal with arrays of objects, creating and manipulating doesn't seem as easy/obvious as .NET. Often in .NET code I ...
-1
votes
2answers
56 views

Object Array won't print correctly

I'm brand new to programming and Java, I'm doing a school project with very strict guidelines. I'm sure there's a more efficient way to do my code, but that's not my issue. When I try to print my ...
-3
votes
3answers
68 views

How To Loop Through Object Array In Javascript [closed]

im trying to loop through an object of arrays seperately (one by one), the object is an element but I want to loop through elements of an array seperately. I've included my JS fiddle which is ...
-2
votes
0answers
47 views

Repeating values / Overwriting array C++

I'm having a problem with the class listed below. Basically I keep getting repeated values being printed out. So in the print out, I get the last line read in as the values for every index of the Node ...
0
votes
4answers
31 views

Better way to print out data from only the first index in an array full of objects?

Option 1: $foo = array($obj1, $obj2, $obj3); for ($i = 0; $i < 1; $i++) { echo $foo[$i]->attribute; echo $foo[$i]->attribute2; } //shows obj1's attribute and attribute2 Option 2: ...
0
votes
2answers
42 views

required: variable, found value - sorting a database

static void sort (Textbook [ ] info, int numEntries) { long tempIsbn = 0; String tempTitle = ""; String tempAuthor = ""; for (int i = 0; i < numEntries; i++) //sorts the array ...
-10
votes
2answers
85 views

Write a java program for a report card [closed]

Like this post for no reason!!!
-10
votes
2answers
55 views

How to store a returned object from a method in a new object in the main method in JAVA [closed]

It shows array dimension missing. new obj[] = mark_entry(); where mark_entry() is a method.
1
vote
4answers
56 views

Putting arrays into custom objects

I am attempting to build my first custom object and it looks something like this: function URLObject() { this.syllables = new Array(); etc... this.AddtoSyllables = AddtoSyllables; ...
0
votes
1answer
34 views

creating arrays of objects that store arrays attributes

Shape.h class Shape { private: string name; public: Shape(name); string getName(); void setName(string); }; Triangle.h class Triangle: public Shape { private: int x; int y; public: ...
0
votes
2answers
33 views

Accessing Object within Array

I have the following output: Array ( [0] => stdClass Object ( [id] => 20 [news_title] => Startup finance docs in GitHub [news_url] => ...
4
votes
4answers
115 views

How to create an Array of Objects in Java

I'm trying to create an array of objects as defined by a subclass (I think that's the correct terminology). I can see that the question is recurring, but implementation is still problematic. My code ...
0
votes
1answer
36 views

Check state of checkboxes in an array - runtime error

I want to run one block of code when any of the 197 checkboxes on the form are clicked. I have all of the checkboxes in an array which I used to check the availability of each seat on the forms load ...
0
votes
1answer
21 views

Access Object Values Within Array In PHP [closed]

I'm using a third-party library (flexi_auth) to do user authentication. I am struggling to get the user information to display in my web-page, e.g. the first name. When I do ...
0
votes
1answer
38 views

Second record doesnt get stored in arraylist

I have an arraylist which the records are stored as objects. In a different form i allow the user to enter an id and retrieve the data of that record with the corresponding id. My problem is , i ...
0
votes
1answer
42 views

Objects within Arrays, and changing their properties

This program is a seat booking system and I am having problems when checking the availability of each seat. When the form loads, an array is created and stores the seat names in. Each seat is a check ...
0
votes
0answers
12 views

how can I make a generic function for pushing a class object into an array?

this is my first time asking a question on this form so please go easy on me if I say something stupid! I'm trying to make a tower defense game in actionscript 3 that has enemies and power ups as ...
0
votes
2answers
26 views

Finding the maximum area of three XY points in an array of XY points

I'm trying to find the maximum area using three XY points in an array of XY points in the form of (X,Y). I'm currently getting the error called object type 'double' is not a function or function ...
-4
votes
0answers
44 views

How hard would it be to make simple match pictures game in Python? [closed]

I'd like to know how hard would you think it would be for me to make a simple match pictures game. There will be squares you have to click on, and when you click on them they turn around with a ...
0
votes
1answer
69 views

How to get the integers 35 and 50 in the output of this program ? [closed]

I am really very new in C++ programming and its been only a month i started learning Object Oriented Programming and i was learning this program of inheritance and I am not getting the output i ...

1 2 3 4 5 31