The assign tag has no wiki summary.
8
votes
1answer
6k views
property “assign” and “retain” for delegate
For iOS developer, delegate is used almost everywhere.
And seem like that we need use "assign" instead of retain for delegate like this
@property(assign) id delegate;
The reason is to avoid ...
5
votes
3answers
1k views
How to name variables on the fly in R?
Is it possible to create new variable names on the fly?
I'd like to read data frames from a list into new variables with numbers at the end. Something like orca1, orca2, orca3...
If I try something ...
2
votes
5answers
46 views
Unable to assign getBytes() to byte array
I'm completely stumped.. Seems like there'd be a simple solution
private Byte[] arrayOfBytes = null;
public Data(String input) {
arrayOfBytes = new Byte[input.getBytes().length];
...
2
votes
3answers
98 views
Python: extra assignments in functions
Considering the following as two versions of a very simple function in Python, the question is which one is preferred over another and why?
Is there any extra memory usage and or CPU usage for case ...
2
votes
1answer
72 views
Application crashing for some reason: returning and assigning problems
In my Main class I call another class to do something, and I need to return the data back to the Main class but it's crashing for some reason on startup of the application:
My Main Activity - it ...
2
votes
1answer
79 views
Returning an anonymous tr1 array initialized with boost.assign
Ok, this works on my compiler (vs2008) but I'm trying to figure out if I'm doing something non-standard. Here's a trivial example what I'm doing:
std::tr1::array<int, 3> OneTwoThree() {
...
2
votes
2answers
828 views
Weird SIGSEGV segmentation fault in std::string::assign() method from libstdc++.so.6
My program recently encountered a weird segfault when running. I want to know if somebody had met this error before and how it could be fixed. Here is more info:
Basic info:
CentOS 5.2, kernal ...
2
votes
3answers
115 views
Reverse assignment in PHP ( LEFT to RIGHT )
first of all sorry for asking such a illogical question , it may be worst question of SO but please gives your suggestion
i have below condition
if (isset($x)){
$y_class = 'new value';
...
2
votes
2answers
309 views
How can I assign clipboard text to a variable in c++?
I've written a program that highlights numbers and copies them. I would like to be able to do some basic math with the copied text, such as multiplication or addition, but I can't figure out how to ...
2
votes
2answers
112 views
NSMutable array- Asign , retain question
hi i just need some info about how to assign, retain objects
for example- if we have two viewcontrollers and needed to pass an array data from viewcontrlr 1 to viewContrl 2 how can we send the ...
2
votes
5answers
813 views
“Protect” text box value from input (HTML form)
I was wondering whether it is possible to assign a value to an HTML text box and protect it.
What I mean is make it´s content unmodifiable, so that when the form gets submitted im "sure" it was this ...
1
vote
3answers
50 views
Assigning Values to JSON Objects in Javascript
This is what I'm trying to build via JavaScript in dot or [ ] notation:
var shoppingCart = {
'item1' : {
'description' : 'This is item #1',
'price' : 10,
...
1
vote
2answers
43 views
Is it better practice to make member vars retained versus assign
I have member variables in my custom UIViewController that are defined as 'assign' (not 'retain') like this:
@property (nonatomic, assign) UIButton* mSkipButton;
In my loadView method, I set the ...
1
vote
1answer
83 views
PHP copy all object properties to this
I have an object in PHP, of the type MyObject.
$myObject instanceof MyObject
Now, in the class MyObject, there is a non-static function, and in there, I use the reference to "me", like $this, but I ...
1
vote
3answers
133 views
Joomla component not appearing in the menu item types
I just followed the joomla tutorials on how to create the "perfect" MVC joomla component. However, my problem is that I don't know yet how to assign it to a menu. I thought that my component would ...
1
vote
2answers
46 views
How to use a dynamic path expression in Xquery
I'm fairly new to xquery so please bear with me as I try to best ask this question.
when i use the following statement (to select a sequence) it works just fine:
let $parts := ...
1
vote
2answers
78 views
How is an assign @property's setter implemented?
Does the implementation of the setter first check if the new value is different than the old value before assigning the ivar to the new value?
Is there a documentation (or source code) reference that ...
1
vote
2answers
232 views
XCode: Checking and assigning split string values to textField
So i have been trying to test this out; basically i have a text file included named rawData.txt, it looks like this:
060315512 Name Lastname
050273616 Name LastName
i wanted to split the ...
1
vote
1answer
31 views
Are there any difference between aspx and code behind when assigning text values asp.net 4.0 c#
This is code behind assigning aspx.cs
if (srLang == "tr")
{
lblUnWantedPrivateMessages.Text = "Özel Mesaj Almak İstemediğiniz Oyuncular";
lblPmBlockUserNameTitle.Text = ...
1
vote
1answer
258 views
Assigning to map in golang
In the following go snippet, what am I doing wrong?
type Element interface{}
func buncode(in *os.File) (e Element) {
<snip>
e = make(map[string]interface{})
for {
var k ...
1
vote
7answers
106 views
Assigning a value to a pointer
If I have the following for example:
int *x;
x = func(a);
For the statement: x = func(a);, do we say that we are returning an address to x? Or, how exactly do we read it?
EDIT: Is it eligible to ...
1
vote
3answers
505 views
Calling a javascript function after loading a page with window.location.assign
Is it possible to call a javascript function after loading a page with window.location.assign? I have this code.
<script language="javascript" type="text/javascript">
function Loadspirit(){
...
1
vote
3answers
269 views
How to assign a row collection (obtained by a linq query) to a datatable without using a loop?
I've scenario where the datatable may contain large number of rows. As a result i can't iterate and update the datatable using a loop.
I am using the following code to get row collection,
...
1
vote
2answers
134 views
Problem passing string value into animate Jquery function
Hey I'm wonder what's the difference between these 2 codes? The first works but the 2nd doesnt?
First >>
for (i=0; i<$sequencingArray.length; i++){
...
...
1
vote
3answers
85 views
A easy question of assignment function of class
I write a class
struct opera{
int a,b;
int op;
opera(int a1=0,int b1=0,int op1=-1):a(a1),b(b1),op(op1){}
opera& operator=(opera& tmp){
a=tmp.a;
b=tmp.b;
op=tmp.op;
}
And ...
1
vote
4answers
61 views
Assigning a value to each array element PHP
Say you have an array like this...
username, password, email
and you need to assign a value to each element. After, this needs to be formatted into a string like this:
...
1
vote
1answer
414 views
Can't assign value in Java 2D Array - ArrayIndexOutOfBoundsException
I'm having trouble assigning a value to my 2-Dimensional Array in Java. I've scoured the web and haven't found any solutions.. The line: theGrid[rowLoop][colLoop] = 'x'; (the last statement) is ...
1
vote
2answers
134 views
assigning algorithm/pseudocode
Im building web application in which Im trying to assign users to groups based on their preferences.
In my application I have 1 table where users infos are stored, and 1 table where users choices are ...
1
vote
1answer
116 views
pointer (ref to structure) as an argument for a function to assign value
I am a newbie in programming and apologise in advance if my question is too silly.
My c++ project is compiled as library .xll (DLL for excel), the framework code (program entry point) is coded ...
0
votes
0answers
18 views
Drupal 7 programmatically assign new user to OG
my site is sud-divided into organic groups.
Groups administrators are allowed to create new users but I need a means to auto-assign the new user to the same group the creating group administrator ...
0
votes
1answer
59 views
Read data from Excel to R and convert to xts
I'm trying to load data from excel (from multiple files) into R using the xlsx package und converting the data into a xts object. The data should get as variable names the names of the related .xlsx ...
0
votes
3answers
37 views
A tool in Xcode to check wether a function retains or not?
I'm currently working on an iOs application, and there is this one thing that is such a pain in the... well, a pain anyway : I always have to check the documentation to know wether an object property ...
0
votes
2answers
62 views
pass jquery value to php variable
Am a noob so hope you can help!
I've got the following jquery code:
$("#single-home-container").html(post_id);
It then displays the value I want within the HTML on the page:
<div ...
0
votes
3answers
30 views
is it wrong? TextView displayTextView = (TextView)findViewById(R.id.DisplayTextView);
Everyone, I am a newbie to android development. Now I have a question that cannot be solved by myself. Anything wrong with the code below(especially the line marked in the code)?
MainActivity.java:
...
0
votes
1answer
52 views
get the value out of a textbox php and match with database
i wan to create a form and match the values of the form to the database. i have tried but i fail and have a werid error. CSRF state token does not match one provided. i am new and need some help
...
0
votes
2answers
69 views
Fortran: initializing of and assigning value to arrays
To initialize and assign value to arrays in Fortran we do as the following:
Initializing:
real(kind=8):: r(3,4)
...
r(:,:) = 0.0_8
what if we use only
real(kind=8):: r(3,4)
...
r = 0.0_8
...
0
votes
4answers
93 views
The idea of C array in matlab
Is it possible to apply the idea of array in C to MATLAB
For example, if we have
Double array[10];
and if we want to assign a value we write for example
Array[5]=2;
Is there any way to write ...
0
votes
2answers
41 views
Are initialization and assignment names for the same thing in Java (the first time but not second time)?
Just to get the words clear here in Java.
Primitive types:
This is a declaration right:
int a;//declared but unitialized
Intializations and assignments:
a = 1;//intialization and assignment
a = ...
0
votes
1answer
37 views
Assign to variable existing class
Take this example:
class Container {
public $text;
public $variable2;
}
class Text {
public $other_variable;
}
How can I assign a Text instance to Container::$variable, without using ...
0
votes
2answers
44 views
Dynamic Setting of WPF Control Properties
I'd like to be able to set properties for various controls in my WPF application where I have the string name of a control and the string name of its type, but I don't know how to do it. So far I ...
0
votes
1answer
35 views
Boost Assign empty list
I want to boost::assign a list to an empty value.
Something like:
using namespace boost::assign;
std::list<int> myList = list_of<int>();
The reason that I want to do that is that I have ...
0
votes
2answers
320 views
Article as homepage without menu connected (joomla 1.7)
Is that possible to make a single article as homepage, but not connected with any menu item?
Please give me some solution.
0
votes
4answers
95 views
Segmentation fault in std::string::assign(std::string const&)
i have the indicated problem with the following code and i have no idea what it might be causing it. I searched before posting the problem, and i learned that it might be something going out of the ...
0
votes
2answers
65 views
How to assign template to smarty admin folder
I have a smarty structure like this
/
/cache
/configs
/libs
/templates
/templates/administrator
/cache
/administrator
I want the same template structure assign to my administrator folder
I am ...
0
votes
2answers
56 views
bash not increasing counter
well i just dont know what happened, my grep results counter used to work and now
it seems that no matter what i do it doesn't count my results and stay on the
initial value of 0, at the first line of ...
0
votes
2answers
44 views
Autorelease/Assign Comprehension
Okay, I really use autorelease/asign lots but I got a problem right now that I don't get. It's probably quite obvious why it isn't working but I'd really like you to explain it to me.
So I've got a ...
0
votes
3answers
68 views
Retain/assign memory management
I'm trying to understand memory management on iOS. I created this interface:
@interface Player : NSObject {
PlayerType pType;
PlayerWeapon pWeapon;
}
@property(nonatomic, readwrite, retain) ...
0
votes
1answer
87 views
Memory Management assigning without allocating directly
Suppose that i have UIView viewLoading declared in .h. and i do not directly initialize it (in the first code).
The first Code.
UIView *viewLoading2 = [[[UIView alloc] initWithFrame:CGRectMake(75 ...
0
votes
3answers
60 views
How to use index as a key in Python?
I have a list: v = [1,2,2,3]. I would like to use this list as a key. I can do it "manually":
x = {}
x[1,2,2,3] = 7
But
x[v] = 7
does not work. What is the easiest way to do what I need to do?
...
0
votes
1answer
92 views
How to assign file input value from another one with Jquery?
I have some elements like these:
<input type="file" name="fake">
<input type="file" name="real" style="display:hidden;">
<a href="javascript:void(0)" onclick="addToList()">
...