A process of setting or re-setting the value stored in the storage location(s) denoted by a variable name.

learn more… | top users | synonyms (1)

4
votes
2answers
58 views

Python 3 How do I 'declare' an empty `bytes` variable

How do I 'declare' an empty bytes variable in Python 3? I am trying to receive chunks of bytes, and later change that to a utf-8 string. However, I'm not sure how to declare the initial variable that ...
0
votes
1answer
72 views

Why can't I assign this int a value?

I have a class: class A { public: A(); ~A(); void IncrementNum(); private: int num; }; A::A() : num(0) { } A::~A() { } ...
-1
votes
1answer
58 views

c char pointer assignment

I'm having problems with assigning a value to char pointers. #include<stdio.h> int main(int argc, char* argv[]){ char line[200], *p, q; int i=0; FILE* f=fopen(argv[1], "r"); ...
-3
votes
0answers
46 views

Populate select list from database live [closed]

I'm doing a big assignment, one of the part in the form is to get the post code input from the user and then search it in database and create select list with the result. i have done that but it only ...
0
votes
5answers
43 views

Pointer dereference in an assignment

I was watching a lecture and got confused at a point when professor said that ptr=&x denotes a variable ptr assigned the address of the variable x. And for y=*ptr+1 he said *ptr denotes the ...
0
votes
2answers
58 views

For struct variables s1,s2,why can I initialize “s1={25,3.5}”,assign s2 as “s1=s2”,but then can't use "s1={59,3.14}?

In C we are allowed to assign the value of one structure variable to other if they are of the same type.In accordance with that, in my following program I am allowed to use s1=s2 when both are struct ...
0
votes
1answer
19 views

cakePHP assigning var from function/method

All, Here is my code: class ManImportsController extends AppController { public $uppath; var $name = 'ManImports'; var $uses = array ('RFupload','ManImport'); var ...
0
votes
1answer
30 views

Javascript object recursive assignment

I have the next Object: var END_POINTS = { list: { members: { show: {} }, subscribers:{ show:{}, destroy: ...
2
votes
3answers
112 views

Understanding Delphi Variable Declarations/Initializations

As it pertains to Delphi... When a variable is declare of a certain type, is it initialized to an OBJECT of that type? Or must the variable be assigned an expression which returns an object of that ...
-3
votes
0answers
29 views

Sierpinski right triangle using asterisk in Java (If possible, recursively) [closed]

I need to generate out sierpinski triangle (right sided) using asterisk in Java. I've been trying for ages but get no result. I need a method called printTriangle(int n) where n is the size. ...
5
votes
5answers
74 views

Scope of a local variable in a block

If I have: 2.times do i ||= 1 print "#{i} " i += 1 print "#{i} " end I get 1 2 1 2, whereas I was expecting 1 2 2 3. Why does i lose its assignment when the loop starts over? It behaves as ...
0
votes
1answer
17 views

Sending of variables between jsp pages using url

I am passing a variable value via URL to another jsp page, but when I run a System.out.println on the 2nd jsp page to check the variable value, it is always null. Any help is appreciated. The codes ...
-1
votes
1answer
43 views

Why doesn't assigning a variable to an array yield expected results in Ruby?

Using IRB, I tested the following: C:\Pickaxe>irb irb(main):001:0> list_of_strings = %w{ a list of strings in an array } => ["a", "list", "of", "strings", "in", "an", "array"] ...
1
vote
2answers
46 views

Bash if statement which saves variable to config file doesn't work

This is my code: alias radio=' if [ -e "$station" ] then open $station else say "I still don't know what your favorite radio station is sir. Would you mind giving me the link?" echo "What ...
0
votes
3answers
45 views

Ruby Change values of variables in array

I have an array made from variables, and I want to perform the same operation on each, and store the result in the original variable: (one, two, three) = [1, 2, 3] [one, two, three].map!{|e| e += 1} ...
0
votes
1answer
32 views

Initialize object by assignment?

How to give types the ability to initialize via an assignment, some like the following: public struct WrappedByte { private byte m_value; } //Usage: WrappedByte x = 0xFF;
1
vote
1answer
71 views

Assign object by reference, without copying

The following fails as the object I want to assign is being copied over then destroyed. So should I be declaring B::data as a pointer instead, or is there some better fancy way to assign by reference ...
0
votes
0answers
11 views

OS The datapath in operation for an R-type

I am studying in Operating System course, and in datapath chaper, there something that I do not understand, please feel free your time to look around this. Datapath in R-type, and complete the ...
-2
votes
3answers
22 views

PHP error: unexpected '=>' (T_DOUBLE_ARROW) on line 2 [closed]

I was wondering if anyone could explain to me why I am receiving an error for this piece of PHP code? From what I have been taught, this is the correct method of writing and then reading from arrays ...
1
vote
2answers
38 views

Dictionary not assigning value to variable

I am trying to assign a value from a dictionary to a variable but the variable remains unchanged. The value is another dictionary. The code I used to generate the dictionaries can be found here: ...
0
votes
1answer
39 views

Mathematica: part assignment

I'm trying to implement an algorithm to build a decision tree from a dataset. I wrote a function to calculate the information gain between a subset and a particular partition, then I try all the ...
1
vote
1answer
81 views

C# statement reachability and definite assignment

I am stumped by the reaction from csc to this code: { int i; if (false) { i++; // uninitialized, but allowed by compiler } if (false && i < 30) // ...
1
vote
6answers
42 views

c - using global variables in calculations

Even though this sounds very basic, my eyes have dried out looking for a solution. I'm trying to do the following, where I assign my global variable to a local variable: #define DECK_SIZE = 52 ... ...
1
vote
1answer
27 views

Parameter Substitution on Left Side of Variable Assigment - BASH and Arrays

I am processing some folders that each represent a page of a book. E.g. "Iliad-001" would be Book=Iliad, Page=001. I want to iterate through all of the folders, create an array for each book and add ...
1
vote
1answer
43 views

How to ensure a struct with a string array as a field would follow value semantics while assigning to another variable

In MSDN documentation it is mentioned that "Structs are copied on assignment. When a struct is assigned to a new variable, all the data is copied, and any modification to the new copy does not change ...
2
votes
1answer
26 views

Can you do a comparison in a variable assignment in bash?

In PHP, I can assign a variable like this: $a = ($b == $c) ? $x : $y; Which assigns to $a the value $x iff $b == $c, and $y otherwise. Is there a way to do this natively in bash? I am aware that ...
0
votes
3answers
43 views

VB function with multiple output - assignment of results

I know there's no straightforward way for multiple assigmnent of function in VB, but there's my solution - is it good, how would you do it better? What I need (how would I do it in python, just an ...
1
vote
1answer
40 views

'range' object does not support item assignment - trying to use old python code in python 3.3

I am trying to run an old python code made with python 2.7(?) in python 3.3 and I'm stuck on updating the code to run. It keeps telling me "'range' object does not support item assignment" and for the ...
7
votes
1answer
107 views

perl assignment to hash in subroutine return gets weird

Running perl 5.12.4 Am getting disparity between result of a function when a hash is assigned within the return statement or beforehand. Easiest example is: perl -e 'sub s1 { my @a=qw/b 1 c 2 a 3 a ...
2
votes
1answer
25 views

Simultaneous assignment semantics in Python

Consider the following Python 3 code: a = [-1,-1,-1] i = 0 And now consider the following two versions of a simultaneous assignment over both a and i: Assignment version 1: a[i],i = i,i+1 ...
1
vote
3answers
50 views

Assigning a large number of variables (from a lookup table?)

I have a two-column lookup table with names in the first column and non-sequential numbers in the second column: Name Number ArcBo 16 ArcGl 41 BorSa 534 EleGr 121 GadMa 249 GadMo ...
0
votes
2answers
33 views

ruby's Parallel assignment to assign same value over simple assignment

Is there a difference between: 1. > lines, codelines, total_lines, total_codelines = 0, 0, 0, 0 => [0, 0, 0, 0] 2. > lines, codelines, total_lines, total_codelines = 0 => 0 If yes, ...
-3
votes
2answers
130 views

C++, what is := used for? [closed]

I'm seeing this in a program. I can't find anything on ":=". What is it used for? The program says: val1 := val1 * (val2 + result);
3
votes
2answers
56 views

Variable is assigned within all cases of a switch but Java says it may not?

Why doesn't this Java code compile? class A { public static void main(String[] args) { boolean b; switch(1) { case 1: b = true; } ...
2
votes
2answers
41 views

Why am I getting this output from this simple splice command?

I have a small issue with understanding why I'm getting this output. var arr = ["a", "b", "c", "d", "e", "f"]; arr.splice(2,0,"1"); console.log(arr); var arr2 = ["a", "b", "c", "d", "e", "f"]; ...
0
votes
3answers
73 views

Java code no longer compiles after factoring out exception throwing to private final function

Have a look at this simple Java code: final class A { public static void main(String[] args) { int x = 3; boolean b; switch(x) { case 1: b = ...
0
votes
2answers
73 views

I assign a pointer and it nulls itself out

So I have a constructor for an object, that on creation sets a few values and then places itself at the end of a linked list. The problem I'm having is that when it assigns the address of the new ...
-1
votes
1answer
26 views

Warranty of storing variable value before next command in java

I am curious if immediately after value assign command like this: a = 5; there is a warranty that the new value has been stored into variable? And if this is different for primitive and other data ...
0
votes
1answer
21 views

trouble assigning value to nested hash

I have a nested hash I want to assign a value to, but ruby keeps complaining about it. the hash: data = { name: contact.xpath('./span[1]').text.delete("\r\n").strip, email: ...
3
votes
3answers
45 views

Python:how to understand assignment and reference?

the python code section are following lines: >>> values = [0, 1, 2] >>> values[1] = values >>> values [0, [...], 2] why the value is [0,[...],2],what is ...? why the ...
0
votes
1answer
12 views

Error assigning associative array key with embedded period

I have a simple shell script in which I am trying to assign a value to an associative array where the key value has one or more "." characters in its value. #!/bin/bash X="my.key" Y="my.val" ...
-3
votes
4answers
43 views

for loop with assignment in php

When I want to iterate an array I usually do: foreach ($array as $a) { //do something with $a } I just want to know if is possible do something like this with a for loop: for ($i = 0; $i < ...
0
votes
1answer
45 views

Reassigning strings involving pointers in C

This is a homework problem, and I believe it is a syntax problem. I have a program with a method that uses arrays of chars to represent strings. I'm trying to copy parts of the arrays into a ...
3
votes
2answers
48 views

Can I pass the result of an assignment to a function in c++?

My question is: "Can I pass the result of an assignment to a function in c++?" The reason I want to do this is that a variable has a specific type, e.g. "int" so I assign the value to the variable ...
0
votes
1answer
46 views

Ruby / Rails: Assigning values to an instance variable

What is the easiest way to assign attribute values to the (model) instance variable, when these attribute values are located in a big hash (session[:some_big_hash]) that contains the usual model ...
2
votes
1answer
51 views

SELECT INTO with more than one attribution

This instruction works: SELECT INTO unsolvedNodes array_agg(DISTINCT idDestination) FROM road WHERE idOrigin = ANY(solvedNodes) AND NOT (idDestination = ANY(solvedNodes)); But I would like to use ...
1
vote
3answers
120 views

Is there a best practice to assign a value to a scala Option when it's not initialized/None?

I have the following class where the properties are an Option[T] class User extends IdBaseEntity[UUID] { var id: Option[UUID] = None var name: Option[String] = None var createdOn: Option[Date] ...
0
votes
2answers
89 views

Simple ways to assign a lot of object values

I'm working on a game. It goes quite well, now I'm making the playing field. Obviously, the program have to store the coordinates of the elements - to use programming's common words: it stores values ...
0
votes
1answer
56 views

Store Javascript PageMethods “return value” into a variable

I have a sample code as follows: PageMethods.getServerTime(DateTimeFormat, OnRequestComplete, OnError); It uses the Javascript PageMethods to call the C# function getServerTime. However, I notice ...
0
votes
1answer
35 views

Javascript Changing URLs based upon click

I am working with the Soundcloud API. A user searches a song or band name and my page returns an output of all the album art associated with each track. I have insert a "play" button for each track; ...

1 2 3 4 5 24