2
votes
7answers
41 views
Changing return type when overidding a function in the subclass in PHP?
Is this bad? Or this is very common in PHP framework?
For example, in the parent class, there is a save() function which returns the number of rows affected in the database. Then i …
1
vote
8answers
161 views
C#, dynamic return type
Hi all,
What I need is a method that can return a type (no object, cause no casting allowed) following a condition. Here is an example:
??? right (string fullStr, int endPosition …
0
votes
3answers
626 views
Datatype of SUM result in MySQL
I'm having a bit of a problem with converting the result of a MySQL query to a Java class when using SUM.
When performing a simple SUM in MySQL
SELECT SUM(price) FROM cakes WHERE …
3
votes
2answers
290 views
How do you apply a .net attribute to a return type
How do I apply the MarshalAsAttribute to the return type of the code below?
public ISomething Foo()
{
return new MyFoo();
}
0
votes
0answers
51 views
WCF Using IParameterInspector Properly
Hello,
I have implemented a wcf service application and now I would like to validate the input data for my methods. With the interface IParameterInspector, BeforeCall of my method …
4
votes
6answers
236 views
How to return dynamic return types in methods? C#
I am having a problem with the return type of a method.
The method returns a linq object which at present returns type tblAppointment. This method is shown below:
public tblAppoi …
0
votes
2answers
100 views
What is the great wisdom in defining your own object if I can’t do this?
This is for Excel and VBA. Assume that BondClass has been properly defined in a Class Module. I get a #VALUE! when I type "=GetBondPrincipal()" into an Excel cell. Have I done some …
12
votes
14answers
502 views
Should I return an array or a collection from a function?
What's the preferred container type when returning multiple objects of the same type from a function?
Is it against good practice to return a simple array (like MyType[]), or sho …
1
vote
7answers
355 views
How to get an ‘array of strings’ as a function’s return type?
String[] decode(String message)
Above is an example. I need to get 2 strings s1 and s2 as the return values for the decode function. How should I proceed?
0
votes
8answers
187 views
How to search for all methods in a project that return implementation of Collection interface?
I've been reading Josh Bloch's 'Effective Java 2nd Edition'. Item 43 states 'Return empty arrays or collections, not nulls'. My question is how can I search for all methods in a pr …
1
vote
2answers
418 views
Why doesn’t this return type work? (C++)
When I try to use my iterator class
template<class T>
class list
{
public:
class iterator;
};
template<class T>
class list<T>::iterator
{
//stuff
};
as a retu …
8
votes
11answers
476 views
String or StringBuilder return values?
If I am building a string using a StringBuilder object in a method, would it make sense to:
Return the StringBuilder object, and let the calling code call ToString()?
return sb;
…
6
votes
9answers
360 views
Is it good to have all the setter functions return a reference to the object in c++?
Is it good to have all the setter functions return a reference to the object in c++?
2
votes
7answers
346 views
why do functions dont have parameterized return types, as it has parameterized input?
This always forces us to return a single parameter in case I need to return multiple, say a List and a String. This restriction is not there in function arguments.
5
votes
11answers
436 views
How Can I Avoid Using Exceptions for Flow Control?
I have been assigned a project to develop a set of classes that act as an interface to a storage system. A requirement is that the class support a get method with the following si …
