objects

Java: I've created a list of word objects to include the name and the frequency, but having trouble updating the frequency.

Hi Everyone, I'm working on a project which has a dictionary of words and I'm extracting them and adding them to an ArrayList as word objects. I have a class called Word as below. What I'm wondering is how do I access these word objects to update the frequency? As part of this project, I need to only have one unique word, and increase ...

Creating C++ objects

I noticed that there are two ways to create C++ objects: BTree *btree = new BTree; and BTree btree; From what I can tell, the only difference is in how class objects are accessed (. vs. -> operator), and when the first way is used, private integers get initialized to 0. Which way is better, and what's the difference? How do you k...

Language-agnostic term for typed things that need memory

Is there an accepted general term that subsumes the concepts of variables, class instances and arrays? Basically "any typed thing that needs memory". In C++, such a thing is called an object, but I'm looking for a more language-agnostic term. § 1.8 The C++ object model 1 The constructs in a C++ program create, destroy, refer to,...

Transfer data between C++ classes efficiently

Hi, Need help... I have 3 classes, Manager which holds 2 pointers. One to class A another to class B . A does not know about B and vise versa. A does some calculations and at the end it puts 3 floats into the clipboard. Next, B pulls from clipboard the 3 floats, and does it's own calculations. This loop is managed by the Manager and r...

get JSON object attribute name

I know that I can retrieve "session" by using item.fields.name but what if I don't know in advance that the attribute is called "name". How can I retrieve the list of the attributes names in fields first. [ { "pk": 2, "model": "auth.group", "fields": { "name": "session" } } ] ...

Returning objects in php

I see similar questions asked but I seem to have problem with more basic stuff than were asked. How to declare a variable in php? My specific problem is I have a function that reads a DB table and returns the record (only one) as an object. class User{ public $uid; public $name; public $status; } function GetUserInfo($uid) { ...

JScript JSON Object Check

I'm trying to check if json[0]['DATA']['name'][0]['DATA']['first_0'] exists or not when in some instances json[0]['DATA']['name'] contains nothing. I can check json[0]['DATA']['name'] using if (json[0]['DATA']['name'] == '') { // DOES NOT EXIST } however if (json[0]['DATA']['name'][0]['DATA']['first_0'] == '' || json[0]['DATA'][...

Design Question: communication between objects within same client-server app

Have a SocketClient which communicates asynchronously with a server. SocketClient relies on Socket.BeginReceive() and Socket.EndReceive() to communicate. As incoming data is received by the Socket, it's immediately decoded by System.Text.Encoding.UTF8.GetDecoder() and parsed into strings delimited by '\n' char, which strings are then pas...

C# Object Array CopyTo links both arrays' values?

Okay, I have what I think is a simple question.. or just a case of me being a C# beginner. I have an array of custom objects (clsScriptItem) that I am populating from a database. Once the items are loaded, I want to back them up to "backup" array so I can revert the information back after changing the main array. However, when I use Cop...

Aggregation relationships and instantiating objects from database storage (vb)

I have a small application which allows users to create accounts and then award 'points' to each other. UserAccount is an object, and so is Point, and there is an aggregation relationship between them: each UserAccount has a member variable (PointHistory) which is a collection of Points. The Point object simply contains properties for w...

how do you pass in a collection to an MVC 2 partial view?

hello , how do you pass in a collection to an MVC 2 partial view? I saw an example where they used the syntax; <% Html.RenderPartial("QuestionPartial", question); %> this passes in only ONE question object.. what if i want to pass in several questions into the partial view and , say, i want to list them out...how would i pass in SE...

Java copyOf method problem with an Array of Objects

elementData = Arrays.copyOf(elementData, newCapacity); Gives error: "The method copyOf(Object[], int) is undefined for the type Arrays" This was not a problem on my home computer, but at my school's it gives the error above. I'm guessing it's running an older JRE version - any workaround? Thanks ...

Is there any different between these two dealloc method?

First one: - (void)dealloc { [super dealloc]; [AboutButton release]; } Second one: - (void)dealloc { [AboutButton release]; [super dealloc]; } Both methods are delloc, first run the super first, the other run it later, which one is correct or there is no diff between two. thz. ...

Is there a problem with this MySQL Query?

public function create() { echo $this->equipment->getCatId() . "<br/>"; echo $this->equipment->getName() . "<br/>"; echo $this->equipment->getYear() . "<br/>"; echo $this->equipment->getManufacturer() . "<br/>"; echo $this->equipment->getModel() . "<br/>"; echo $this->equipment->getPrice(...

How to find the byte offset of an object in C++?

Let's say I create 5 objects, all from the same class. Would the byte offset of the first object be 0? How would I find out the byte offset of the other objects? ...

After passing a reference to an method, any mods using that reference are not visible outside the method - Ruby?

I am passing the reference of name to *mod_name*, I modify the referenced object from within the method but the change is not visible outside of the method, if I am referring to the same object from all locations how come the value is different depending on where I reference it? name = "Jason" puts name.object_id #19827274 def mo...

How do I copy a JavaScript object into another object?

Say I want to start with a blank JavaScript object: me = {}; And then I have an array: me_arr = new Array(); me_arr['name'] = "Josh K"; me_arr['firstname'] = "Josh"; Now I want to throw that array into the object so I can use me.name to return Josh K. I tried: for(var i in me_arr) { me.i = me_arr[i]; } But this didn't have ...

Use variables to decide which object in an array gets an attribute?

I have a web app which has two text areas. When one text area receives a mousedown event, a variable "side" is set, either "left" or "right." When a user selects some text in a text area, three strings are made. One for the text before the beginning of the selection, the selection itself, and the text after the selection to the end. A fu...

Select the objects for publishing and set article properties using RMO in C# .NET

I am using transaction replication with push subscription. I am developing a UI for replication using RMO in C#.NET between different instances of the same database within same machine holding similar schema and structure. I am using Single subscriber and multiple publisher topology. During creation of publication i want to set a few art...

adding newly created dom elements to an empty jQuery object

Why doesn't this work in jQuery 1.4.2? var $list = $([]); for(var i=0; i<50; i++) { $list.add( $('<div/>', { id: 'jake', class: 'test' }).data('test', { hi: 'hello' }) ); } alert($list.size()); // 0 Thanks! ...