30
votes
24answers
3k views
Best Practice: Should functions return null or an empty object?
What is the best practice when returning data from functions. Is it better to return a Null or an empty object? And why should one do one over the other?
Consider this:
public …
2
votes
8answers
185 views
When returning a pointer, what to return if it’s not found? C++
I'm not sure what to return as a default?
myDrugs is a private vector<Drug*> container
Drug* DrugDealer::getFirstDrugInSack(DrugType drugtobuy)
{
for (int i = 0; i < …
0
votes
3answers
64 views
How To Pass a Dictionary To a Function
Alright, so I think I'm doing this the right way. I'm new to objective-C, so I'm not sure about the syntax... I have a set of code that I need to call multiple times, from differ …
2
votes
8answers
168 views
Which one is preferred, return const double& OR return double.
Given the following scenario, which one of the following is preferred.
m_state is a member rater than a local variable.
class C
{
private:
double m_state;
public:
double s …
0
votes
2answers
69 views
C return and comparation inline
Hi everyone,
I'm just to figure out what does this method do, I know there must be a way to put this line by line, can you help me please?
Thanks
int
conditional ( int n, EXPRES …
0
votes
3answers
98 views
Returning multiple values from a method in Objective-C
I asked a similar question, but I couldn't get it working exactly. I'm building an iPhone app, and there is a method that I want called from different files. I figured the easiest …
1
vote
2answers
101 views
C# DataSet - Retrieving Unique Value based on column
Hello there,
I'm having some issues trying to retrieve unique values from a DataSet in csharp, is that possible?
Actually I'm doing something like this that gets a dataset from a …
1
vote
4answers
122 views
Returning Multiple Values from a Function
Hey, so I'm making an iPhone app and in there is a common function that needs to be called. So I put it in it's own file and set it up, passing the parameters to that and all that …
13
votes
22answers
923 views
How do you return two values from a single method?
When your in a situation where you need to return two things in a single method, what is the best approach?
I understand the philosophy that a method should do one thing only, but …
0
votes
2answers
51 views
How can I capture the return value of shutil.copy() in Python ( on DOS )?
Hi,
I am trying to record the success or failure of a number of copy commands, into a log file. I'm using shutil.copy() - e.g.
`str_list.append(getbitmapsfrom)
…
2
votes
5answers
141 views
Function pointer doubt
Please tell me what will the call to given function return and how? The code:
typedef struct {
int size;
ptrdiff_t index;
void (*inlet) ();
int argsize;
ptrdif …
0
votes
2answers
85 views
which sqlite statement can produce a result to indicate duplicate entries? Android
For my application, I am trying to add entries without having a duplicate entry, and if there are a duplicate notify the user and have him try again. Using SQLite, which I know ver …
2
votes
4answers
138 views
Scheme How To Return Multiple Values?
I notice that almost all scheme functions can only return one list as output.
In the following, I would like to return multiple values of all the adjacent nodes of neighbors.
(d …
1
vote
1answer
41 views
How to Assign Mulitpule Caulated Value Into List in Scheme
Okay this is my 4th question today on Scheme, still pretty new to Scheme, as I needed for one of my sub-function I asked earlier in the day.
Basically this will return me the dif …
3
votes
8answers
272 views
C# - How to indicate when purposely ignoring a return value.
In some situations using C/C++, I can syntactically indicate to the compiler that a returnvalue is purposely ignored:
int SomeOperation()
{
// Do the operation
return rep …
