Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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? ...
29
votes
6answers
14k views

Uses for the Java Void Reference Type?

There is a Java Void -- uppercase V-- reference type. The only situation I have ever seen it used is to parameterize Callables final Callable<Void> callable = new Callable<Void>() { ...
28
votes
5answers
3k views

What do I return if the return type of a method is Void? (Not void!)

Due to the use of Generics in Java I ended up in having to implement a function having Void as return type: public Void doSomething() { //... } and the compiler demands that I return something. ...
23
votes
3answers
3k views

what is the point of void in javascript

I have seem some people put their code inside of the void function. I have also seen this in hrefs: javascript:void(0) which doesnt seem any better than writing javascript:; so, what is the ...
22
votes
4answers
2k views

is f(void) deprecated in modern C and C++

I'm currently refactoring/tidying up some old C code used in a C++ project, and regularly see functions such as int f(void) which I would tend to write a int f() Is there any reason not to ...
21
votes
1answer
938 views

What's the point of const void?

Apparently, it is possible to declare a function returning const void: const void foo() { } g++ seems to consider the const important, because the following code does not compile: #include ...
21
votes
7answers
2k views

casting unused return values to void

int fn(); void whatever() { (void) fn(); } Is there any reason for casting an unused return value to void, or am I right in thinking it's a complete waste of time? Follow up: Well that seems ...
17
votes
4answers
4k views

Does “instanceof Void” always return false?

Can this method return true somehow? public static <T> boolean isVoid(T t) { return t instanceof Void; }
14
votes
3answers
378 views

What is System.Void?

I know that methods declared with void does not return anything. But it seems that in C# void is more then just a keyword, but a real type. void is an alias for System.Void like int is for ...
14
votes
3answers
402 views

Whats the better (cleaner) way to ignore output in PowerShell

Let's say you have a method or a CMDlet that returns something, but you don't what to use it and you don't want to output it. I found this two ways: Add-Item > $null [void]Add-Item Add-Item | ...
13
votes
3answers
2k views

What is the need of Void class in Java

I am not clear with the class java.lang.Void in Java. Can anybody elaborate in this with an example.
13
votes
5answers
5k views

What does “javascript:void(0)” mean?

<a href="javascript:void(0)" id="loginlink">login</a> I've seen such hrefs many times, but I don't know what exactly that means.
12
votes
5answers
562 views

Calling a non-void function without using its return value. What actually happens?

So, I found a similar question here, but the answers are more about style and whether or not you are able to do it. My question is, what actually happens when you call a non-void function that ...
11
votes
7answers
363 views

Why can't objects of type void be created in C++?

C++ doesn't allow creating objects of type void. Why is that?
11
votes
3answers
433 views

How to implement an interface member that returns void in F#

Imagine the following interface in C#: interface IFoo { void Bar(); } How can I implement this in F#? All the examples I've found during 30 minutes of searching online show only examples that ...
11
votes
4answers
1k views

How can I resolve this case of `Useless use of a variable in a void context`?

How can I resolve this case of Useless use of a variable in a void context? For example: my $err = $soap_response->code, " ", $soap_response->string, "\n"; return $err; I get warnings ...
11
votes
3answers
4k views

C void arguments

What is better: void foo() or void foo(void)? With void it looks ugly and inconsistent, but I've been told that it is good. Is this true? Edit: I know some old compilers do weird things, but if I'm ...
10
votes
3answers
161 views

Why does bsearch return a void *?

void * bsearch ( const void * key, const void * base, size_t num, size_t size, int ( * comparator ) ( const void *, const void * ) ...
10
votes
4answers
257 views

Is there any practical use of “Void” structure in .NET

Just of a curiosity, is there any practical use of "Void" struct except in Reflection ?
8
votes
3answers
348 views

Weird use of void

I've been going through some C source code and I noticed the following: void some_func (char *foo, struct bar *baz) { (void)foo; (void)baz; } Why is void used here? I know (void) before an ...
8
votes
11answers
784 views

Genericity vs type-safety? Using void* in C

Coming from OO (C#, Java, Scala) I value very highly the principles of both code reuse and type-safety. Type arguments in the above languages do the job and enable generic data structures which are ...
8
votes
10answers
522 views

Complicated C cast explanation

I'm trying to figure out what the following code in C does? ((void(*)())buf)(); where 'buf' is a char array.
8
votes
2answers
8k views

variable or field declared void

I have a function called: void initializeJSP(string Experiment) And in my MyJSP.h file I have: 2: void initializeJSP(string Experiment); And when I compile I get this error: MyJSP.h:2 error: ...
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
1answer
315 views

Why cast an unused value to void?

In some project, I have seen this code: static void *l_alloc (void *ud, void *ptr, size_t osize, size_t nsize) { (void)ud; (void)osize; /* some code not using `ud` or `osize` */ ...
7
votes
9answers
966 views

Returning boolean instead of declaring a void type in Java?

Are there any hard and fast rules regarding returning boolean in a method signature to indicate a successful operation as opposed to declaring void? I find that for more critical operations in my ...
7
votes
9answers
1k views

Is it bad practice to use return inside a void method?

Imagine the following code: void DoThis() { if (!isValid) return; DoThat(); } void DoThat() { Console.WriteLine("DoThat()"); } Is it OK to use a return inside a void method? Does it ...
7
votes
2answers
1k views

in c: func(void) vs. func()

When a C function does not accept any arguments, does it have to be declared/defined with a "void" parameter by the language rules? PC-Lint seems to have problems when there's nothing at all in the ...
6
votes
6answers
338 views

In Java, can “void” be considered a primitive type?

I've noticed eclipse JDT uses void as a primitive type. Can this be considered correct?
6
votes
12answers
430 views

C: Returning a void versus returning a double * from a subfunction

I'm working on trying to speed up some general data processing in C. I've written several subroutines of the form: double *do_something(double *arr_in, ...) { double *arr_out; arr_out = ...
6
votes
2answers
297 views

Void in constrast with Unit

I would like to understand which is the difference between these two programming concepts. The first represents the absence of data type and at the latter the type exists but there is no information. ...
6
votes
6answers
3k views

Pointer to void in C++?

I'm reading some code in the Ogre3D implementation, and I can't understand what does a void*-typed variable could mean. What does a pointer to void means in C++?
5
votes
4answers
83 views

On Void return type

If one needs return a Void type, which Javadoc describes as A class that is an uninstantiable placeholder class to hold a reference to the Class object representing the Java keyword void. Why ...
5
votes
6answers
177 views

Can there be a C++ type that takes 0 bytes

I'm trying to declare a C++ variable that takes up zero bytes. Its in a union, and I started with the type as int[0]. I don't know if that is actually zero bytes (although sizeof(int[0]) was 0). I ...
5
votes
2answers
76 views

Please Explain The Meaning of Following Cast [closed]

Possible Duplicate: Weird use of void I was reading C code and came across the following. Can somebody please explain what this does. static int do_spawn(const char *filename) { ...
5
votes
2answers
58 views

Regarding template type parameters in C++

I've been browsing through some of the questions here and I found some sample code that passed (what looks like) an integer casted as type void as the type parameter for a templated object. Here's an ...
5
votes
1answer
177 views

casting 0 to void [closed]

Possible Duplicate: Why is (void) 0 a no operation in C and C++? On my implementation of C++ (Visual Studio 2008 implementation) I see the following line in <cassert> #ifdef NDEBUG ...
5
votes
4answers
395 views

C question: single dereference on a void** double indirection pointer

I got this message: expected 'void **' but argument is of type 'char **' when I tried to compile something similar to this: void myfree( void **v ) { if( !v || !*v ) return; ...
5
votes
2answers
211 views

Is it legitimate to pass an argument as void*?

I have just started learning pthreads API and I am following the tutorial here However, in an example program of pthread_create, the sample program creates a long variable and passes its value, ...
5
votes
4answers
1k views

c incompatible types in assignment, problem with pointers?

Hi I'm working with C and I have a question about assigning pointers. struct foo { int _bar; char * _car[SOME_NUMBER]; // this is meant to be an array of char * so that it can hold pointers to ...
4
votes
3answers
86 views

C# thread method return a value? [closed]

Possible Duplicate: Access return value from Thread.Start()'s delegate function public string sayHello(string name) { return "Hello ,"+ name; } How can i use this method in ...
4
votes
1answer
114 views

PostgreSQL functions returning void

Functions written in PL/pgSQL or SQL can be defined as RETURNS void. I recently stumbled upon an odd difference in the result. Consider the following demo: CREATE OR REPLACE FUNCTION f_sql() ...
4
votes
4answers
130 views

A void* being used to maintain state… (C programming)

Currently we are learning how to program AVR micro-controllers (Ansi C89 standard only). Part of the included drivers is a header that deals with scheduling ie running tasks at different rates. My ...
4
votes
9answers
207 views

Is void a type?

I can't answer completely "why should we call "void" is 'return type'?" How do I prove that "void" is a type? :: in JAVA
4
votes
2answers
272 views

Casting function pointer

I'm looking at example abo3.c from Insecure Programming and I'm not grokking the casting in the example below. Could someone enlighten me? abo3.c int main(int argv,char **argc) { extern ...
4
votes
2answers
2k views

C Dereference void* pointer

Hey guys, I'm new to C and for my first project I need to implement an array based queue. I want my queue to be able to hold any kind of object so I created a QueueElement structure to hold a void ...
4
votes
1answer
348 views

Is void a data type in C?

Can I know if void is data type in "C"? what type of values it can store, if we have int, float, char etc to store the values why is void needed?
4
votes
7answers
344 views

Returning From a Void Function in C++

Consider the following snippet: void Foo() { // ... } void Bar() { return Foo(); } What is a legitimate reason to use the above in C++ as opposed to the more common approach: void Foo() { ...
4
votes
6answers
145 views

Need for prefixing a function with (void)

I recently came across a rather unusual coding convention wherein the call for a function returning "void" is prefixed with (void). e.g. (void) MyFunction(); Is it any different from the ...
4
votes
3answers
642 views

Call a void* as a function without declaring a function pointer

I've searched but couldn't find any results (my terminology may be off) so forgive me if this has been asked before. I was wondering if there is an easy way to call a void* as a function in C without ...

1 2 3 4 5