5
votes
11answers
547 views
Which is better, return value or out parameter?
If we want to get a value from a method, we can use either return value, like this:
public int GetValue();
or:
public void GetValue(out int x);
I don't really understand the …
5
votes
16answers
385 views
How have your coding values changed since graduating?
We all walked out of school with the stars in our eyes and little experience in "real-world" programming. How have your opinions on programming as a craft changed since you've gain …
4
votes
1answer
414 views
iterator adapter to iterate just the values in a map?
I'm just getting back into C++ after a couple of years of doing a lot of C#, and recently Objective C.
One thing I've done before is to roll my own iterator adapter for std::map t …
3
votes
2answers
343 views
Getting rid of axis values in R Plot
Hi, i was just wondering if there was a way to get rid of axis values, either the x axis or y axis respectively, in an r-plot graph. I know that axes = false will get rid of the e …
2
votes
3answers
101 views
Emulating Value Type Polymorphism in C Sharp
I'm looking for a way to create some kind of value type hierarchical class structure. I know that enums do not support inheritence since they are value types and are therefore seal …
2
votes
2answers
108 views
Drupal - Set default value in hook_form_alter?
Trying to prepopulate some of my form fields, and am using hook_form_alter(). I've tried a couple of different ways, but in both cases, the fields still come up empty. I'm assumi …
2
votes
5answers
225 views
How to keep the order of elements in hashtable
I have a hashtable . values() method returns values in some order different from the order in which i am inserted.How can i get the values in the same order as i inserted?Using Lin …
2
votes
4answers
123 views
Create possible pairs irrespective of order in a indefinite set of values.
What i am trying to figure out is an algorithm that will create possible pairs irrespective of order in a indefinite set of values.
for example let's say the set is A,B,C,D,E
the …
2
votes
5answers
392 views
I need to have a key with multiple values. What datastructure would you recommend?
I have an string array filled with words from a sentence.
words[0] = "the"
words[1] = "dog"
words[2] = "jumped"
words[3] = "over"
words[4] = "the"
words[5] = "wall."
words[6] = "t …
1
vote
1answer
55 views
Display Django values() on Foreign Key in template as object instead of its id
I have a queryset in Django that calls Model.objects.values('item')... where 'item' is a Foreign Key.
class Words(models.Model):
word = models.CharField()
class Frequency(mode …
1
vote
1answer
25 views
Method for generating numerical values from a URL
In the 90s there was a toy called Barcode Battler. It scanned barcodes, and from the values generated an RPG like monster with various stats such as hit points, attack power, magic …
1
vote
2answers
144 views
Oracle group by and the empty resulting set
Hi!
I have the following SQL problem.
Scenario:
I have two tables: Change and ChangeTicket.
There is a 1:n relationship. One Change has cero or many changeTickets.
No change mean …
1
vote
2answers
434 views
How is values() implemented for Java 6 enums?
In Java, you can create an enum as follows:
public enum Letter {
A, B, C, D, E, F, G;
static {
for(Letter letter : values()) {
// do something with lette …
1
vote
3answers
174 views
passing data from C++ to PHP
Hi,
I need to pass a value from PHP to C++, this I think I can do with PHPs passthru().
Then I want C++ to do something to that value and return the result to PHP.
This is the bit …
1
vote
2answers
81 views
rijndael encryption
does this encryption library use pipe characters? I'm storing the key in an array with the corresponding UserID value, and delimiting them with a pipe character. If the library g …
