1
vote
3answers
144 views
F# - Let and Property Assignment in one line
How can you write the following F# code (or similar) in one line:
let contextMenu = new ContextMenuStrip()
mainForm.ContextMenuStrip <- contextMenu
I have to declare contextM …
1
vote
2answers
42 views
iPhone table view - some button/action questions
I created a table view that is populated with a custom UITableViewCell (like this). Each of the cells contains two UIButtons. I assign the action to the button like this:
[decrea …
0
votes
1answer
44 views
PHP combining directions in switch to get diagonal text
[Disclaimer: I am new to PHP, and I am just learning, so please no flamers, it really hinders the learning process when one is trying to find solutions or information, thank you, a …
3
votes
4answers
75 views
Why does an assignment for double-sliced numpy arrays not work?
Hello everybody,
why do the following lines not work as I expect?
import numpy as np
a = np.array([0,1,2,1,1])
a[a==1][1:] = 3
print a
>>> [0 1 2 1 1]
# I would expect [ …
3
votes
9answers
230 views
What is this syntax?
i = 1, 2, 3, 4, 5;
this actually assigns 1 to i.
I wonder if this type of assignment is actually useful somewhere?
Do you know some application of this syntax?
1
vote
1answer
71 views
Fastest way to insert a word at the correct position in a dictionary
Currently, I'm simply inserting the word into the dictionary (ArrayList<String>) and then sorting the dictionary like so:
dictionary.add(newWord);
Collections.sort(dictionar …
0
votes
1answer
55 views
in Java, I can’t assign values to variables while i’m in the run() function of a thread-extended class.
This is my code. As you see in the run method, I assign values to tStart, tEnd, tAround and wTime. But when the Thread ends, they still have the default values of -1. I try printin …
0
votes
5answers
57 views
String Assignment -Clarification
When i declare
string x = new string(new char[0]);
It works fine.My question is what value will be assigned to x ?
when i check
Console.WriteLine(x.CompareTo(null)==0);,it r …
0
votes
5answers
192 views
Simple C array declaration / assignment question
In higher level languages I would be able something similar to this example in C and it would be fine. However, when I compile this C example it complains bitterly. How can I assig …
0
votes
3answers
27 views
How can you assign an event object to an event id in this example?
I don't know if this a Ruby question or a Rails question but in this example of a use of nested resources in Rails, how is it possible to assign an event object to an event_id? The …
0
votes
6answers
90 views
Assigning a value when an exception occurs (Java)
Hello,
Here is some sample code to illustrate our issue:
A a = null;
try {
a = new A();
a = doSomethingThatWillThrowAnException();
} finally {
System.out.println("A = " + a …
0
votes
1answer
52 views
Entity Framework: Assign entity to property of another entity
Hi,
I have these entities (this is just an abstraction I created for this post):
Language
District
Description
These are the references between them:
District * - 1 Languag …
2
votes
5answers
307 views
Smiley face when assigning improper value type to struct property!!
I am somewhat wondering if I am losing my mind, but I swear to you, this code outputs smiley faces as the .name values!! what in the world is going on? Thus far it seems to only wo …
2
votes
3answers
163 views
VS2008 C++ Compiler error?
this compiles :-)
string name;
name = 1;
this does not:
string name = 1;
any thoughts?
I know that this is wrong. . . that is not the point. The first gives a smiley face.
6
votes
2answers
142 views
Is there a defined evaluation order for &= and |= ?
If you have a C function which returns an integer, you could write a statement like this:
MyInt &= MyFunc();
...where we're using the bitwise-AND assignment operator.
The q …
