Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

68
votes
3answers
3k views

Why doesn't C# support the return of references?

I have read that .NET supports return of references, but C# doesn't. Is there a special reason?
44
votes
14answers
1k views

Why can't I return a void method call?

void run() { ... if (done) return cancel(); ... } where cancel() return void. This won't compile... and I can almost understand why. But if I want to return a void from a void, why not? ...
17
votes
3answers
797 views

Why do constructors in java not have a return type? [closed]

Possible Duplicate: Why constructor not returns value Why don't constructors have a return type, not even void? What's the reason for that?
17
votes
6answers
2k views

When is C++ covariance the best solution?

This question was asked here a few hours ago and made me realise that I have never actually used covariant return types in my own code. For those not sure what covariance is, it's allowing the return ...
13
votes
14answers
608 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 should you wrap it in ...
12
votes
7answers
576 views

Is there a standard “never returns” attribute for C# functions?

I have one method that looks like this: void throwException(string msg) { throw new MyException(msg); } Now if I write int foo(int x, y) { if (y == 0) throwException("Doh!"); ...
10
votes
11answers
1k 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; OR Return the ...
9
votes
4answers
469 views

C# Async: What's the difference between returning void and returning a Task?

In looking at various C# Async CTP samples I see some async functions that return void, and others that return the non-generic Task. I can see why returning a Task<MyType> is useful to return ...
8
votes
2answers
225 views

Why doesn't Java 5+ API take advantage of covariant return types?

Since Java 5 we are allowed to have covariant return types. Why doesn't the Java API take advantage of this? Take Graphics2D.create() for instance. Why isn't it overridden to return a Graphics2D ...
7
votes
6answers
162 views

Student: Trying to understand how a pointer return type works

I'm trying to understand how returning a pointer works in the following scenarios: #include <iostream> using namespace std; // Why does this work? I can even pass the return value to another ...
7
votes
4answers
555 views

Java generics void/Void types

I am implementing a ResponseHandler for the apache HttpClient package, like so: new ResponseHandler<int>() { public int handleResponse(...) { // ... code ... return 0; } ...
7
votes
2answers
595 views

What if I write return statement in constructor?

What if I write return statement in constructor? Is it standard conformant? struct A { A() { return; } }; The above code compiles fine, without any error at ideone. But the following code ...
7
votes
3answers
1k views

c++ virtual function return type

Is it possible for an inherited class to implement a virtual function with a different return type (not using a template as return)?
7
votes
6answers
518 views

Why should functions always return the same type?

I read somewhere that functions should always return only one type so the following code is considered as bad code: def x(foo): if 'bar' in foo: return (foo, 'bar') return None I guess the ...
7
votes
8answers
618 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++?
6
votes
3answers
96 views

C++ return type question

Is there any difference between these: struct Class* CreateClass(); and: Class* CreateClass(); It's just a factory function declaration. You can see that one has struct at the start and one ...
6
votes
2answers
226 views

Java - Return correct type from Generic method

I have the following class structure: public class Team { ... } public class Event { } public abstract class Fixture<T extends Team> implements Event { ... } public abstract class ...
6
votes
3answers
307 views

member function pointer which returns same type of member function pointer

I'd like to declare a member function pointer in C++, that returns the same member function pointer type This doesn't work: class MyClass { public: typedef FunctionPtr ...
5
votes
5answers
116 views

How can an interface include a method that references the concrete implementation type of the interface in its signature or return type?

Suppose I am designing something like the following interface: public interface MyInterface{ public MyInterface method1(); public void method2(MyInterface mi); } However, there is the caveat ...
5
votes
4answers
118 views

How best to modify and return a C# argument?

I need to take a Widget that already has several property values set. I need to change the Widget's name. I'm drawn toward Option 3, but I'm having a hard time articulating why. public void ...
5
votes
4answers
142 views

Changing return type of a virtual function when it is a smart pointer

In C++ we can do this: struct Base { virtual Base* Clone() const { ... } virtual ~Base(){} }; struct Derived : Base { virtual Derived* Clone() const {...} //overrides Base::Clone }; ...
5
votes
2answers
229 views

Objective-c return method returning NSMutableArray instead of declared NSArray return type

If I want to return an immutable array like this + (NSArray *)ids but inside this method I'm declaring a NSMutableArray because I want to sort it using -sortUsingSelector:. Returning this method ...
5
votes
7answers
135 views

Can method return method? [C#]

Can method in C# return method ? Method could return lambda expression for example but I don't know what kind of Type parameter could I give to such method, because method isn't Type . Such returned ...
5
votes
2answers
221 views

how can I return an array from a Delphi application function?

I have a function in my application that needs to return an array. I have found in a couple of places how to do this by declaring the array type, eg. type TStringArray = array of string; And then ...
5
votes
3answers
807 views

What does a constructor return?

My question is what does a constructor return? This question is not quite different from "What is the return type of a constructor?" I have read somewhere that a constructor returns a complete object ...
5
votes
3answers
312 views

Does C++ enforce return statements?

Okay, little oddity I discovered with my C++ compiler. I had a not-overly complex bit of code to refactor, and I accidentally managed to leave in a path that didn't have a return statement. My bad. ...
5
votes
2answers
334 views

What is the type of a lambda function?

In C++0x, I'm wondering what the type is of a lambda function. Specifically: #include<iostream> type1 foo(int x){ return [x](int y)->int{return x * y;}; } int main(){ ...
5
votes
4answers
236 views

Is it advisable to have an interface as the return type?

I have a set of classes with the same functions but with different logic. However, each class function can return a number of objects. It is safe to set the return type as the interface? Each class ...
5
votes
5answers
1k views

.NET ParameterizedThreadStart wrong return type

I just started experimenting with Threads and I ran in to a problem I'm not able to solve on my own. I get the error: Error 1 'bool projekt.ftp.UploadFil (object)' has the wrong return type I use ...
5
votes
11answers
572 views

Should methods with return type void use a return statement?

I know that there are times when using return; can serve a useful purpose in Java, such as in guarding: public void foo(Bar bar) { if(bar == null) return; // bar is not null, go ...
5
votes
6answers
2k 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 tblAppointment ...
5
votes
11answers
1k 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 signature: public ...
5
votes
2answers
692 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(); }
4
votes
1answer
84 views

Return data type of the function in c programming

i have to use exit(1) command in a function. Does it have anything to do with the return data type of the function in which it is being used?
4
votes
9answers
260 views

how to return char array in c++?

char *recvmsg(){ char buffer[1024]; return buffer; } int main(){ char *reply = recvmsg(); ..... } I get a warning warning C4172: returning address of local variable or temporary
4
votes
2answers
82 views

Java generics - getting a method to return the same type as the first parameter

Something like this is what Im trying to achieve: public Attribute<?> getAttribute(Class<? extends Attribute> attributeClass){ for(Attribute attribute: attributes) ...
4
votes
4answers
161 views

Is there a reason on not allowing lambdas to deduce the return type if it contains more than one statement?

Taken from the C++0x FDIS (n3290): If a lambda-expression does not include a lambda-declarator, it is as if the lambda-declarator were (). If a lambda-expression does not include a ...
4
votes
1answer
97 views

Is there any difference between these forms : returnType vs returnType &?

Consider these free standalone functions: std::vector<int>& f(); //reference std::vector<int> g(); //value /*const*/ std::vector<int>& f1 = f(); ...
4
votes
1answer
388 views

Return type of generic method

I have a generic method which is to return an object of the generic type. Some code: public static T Foo<T>(string value) { if (typeof(T) == typeof(String)) return value; if ...
4
votes
3answers
192 views

C++ return type qualifiers heaven

It's hell actually. Can someone please explain in plain English why the below segments work or not? class Hey; class Bitmap { public: const Hey* const& getHey() { return hey; }; // works ...
4
votes
3answers
137 views

Differing return type for virtual functions

A virtual function's return type should be the same type that is in base class, or covariant. But why do we have this restriction?
4
votes
4answers
271 views

Overloading operator []

Let's say I have a container class called MyContainerClass that holds integers. The [] operator, as you know, can be overloaded so the user can more intuitively access values as if the container were ...
4
votes
2answers
354 views

Return from a C++0x lambda caller directly

I've just rewritten the following C89 code, that returns from the current function: // make sure the inode isn't open { size_t i; for (i = 0; i < ARRAY_LEN(g_cpfs->htab); ++i) { ...
4
votes
2answers
864 views

Unable to return custom class from WCF Data Service

I am trying to return a custom class from my WCF data service. My custom class is: [DataServiceKey("ID")] public class Applist { public int ID { get; set; } public string Name { get; set; } } ...
4
votes
2answers
131 views

Is it better to return the most specific or most general type from an action method?

What are the benefits or detriments of either?
3
votes
6answers
134 views

what does return; mean?

The return data-type of a function,whose prototype is declared in main(), is void. It cointains an instruction return; as in main() { void create(int *p); *some code* } void create(node ...
3
votes
4answers
69 views

Return type ambiguity

Consider the following code from The Java Programming Language book public class MyClass extends HerClass implements Cloneable { public MyClass clone() throws CloneNotSupportedException { ...
3
votes
3answers
309 views

Why can't char** be the return type of the following function in C++?

I have the following function in C++ : char** f() { char (*v)[10] = new char[5][10]; return v; } Visual studio 2008 says the following: error C2440: 'return' : cannot convert from 'char ...
3
votes
3answers
177 views

AS3 Best practices for a method that could return two types

I've been developing a framework for ActionScript 3 and have come across a peculiar scenario where I want a method to be able to return either an AvFrameworkObject or an Array containing multiple ...
3
votes
3answers
123 views

Using a returned error message to determine if error is present

I was recently talking with a buddy about return values taking only a single meaning. At my previous job, we worked with C++ and had typedef'ed wBOOL so that a 0 was wFALSE, and 1 was wTRUE. The ...

1 2 3 4