A syntactic place-holder for the return type of a method/function when there is no return type (ie when nothing is returned)

learn more… | top users | synonyms

1
vote
2answers
58 views

How can I use a void* argument in C++ for multiple object types?

In short, I have multiple classes that I have created for representing data from different devices (cameras, actually). They both have different behavior under the hood, but the interaction is built ...
1
vote
0answers
15 views

javascript void links with RSpec

My Rails app uses nav pills to change the partial used on a form. %ul.nav.nav-pills %li.active %a{href: "javascript:void()", id: 'post_one_partial', name: 'post_one_tab'} Post One %li ...
0
votes
0answers
17 views

Compile ITK (InsightToolkit) on MSVC2008-SP1, error C2182: illegal use of type 'void'

I tried to ITK framework 4.3.2 on MSVC2008-SP1 and Windows 8 64 bit Platform, however obtained the following errors on several locations: ...
0
votes
5answers
78 views

what is the practical use of void datatype and void pointer?

Void variable has nothing to do and also void pointer can only be pointed with casting. So void pointer is used when we actually don't know where and of which data type we want to point. But what is ...
3
votes
3answers
133 views

Is casting to pointers to pointers to void always safe?

#include <stdio.h> void swap(void *v[], int i, int j) { void *tmp; tmp = v[i]; v[i] = v[j]; v[j] = tmp; } int main(void) { char *s[] = {"one", "two"}; printf("%s, ...
-6
votes
0answers
37 views

How to set up code for player vs computer in Mancala [closed]

So I have written a code for the game mandala, rules are here http://boardgames.about.com/cs/mancala/ht/play_mancala.htm, I have been trying to figure out how to have the player be able to play a ...
0
votes
1answer
27 views

Void pointer void type cast function call?

Ok this is odd. It's the first time I've seen such a line of code. Basically this calls the entry point into an application once you've specified an offset (address) from a program's PE header. As ...
1
vote
1answer
38 views

Implement conference call in Sipdroid

I am developing an application in which i want to implement conference call so for learning purpose i want add this functionality in Sipdroid an open source project. Sipdroid supports conference call ...
1
vote
1answer
53 views

Pointers On Pointers

#include <stdio.h> #include <string.h> void F1(void *comp, void *record){ int complen = strlen((char *)comp), recordlen = *(int *)record; *(int *)record = complen>recordlen ? ...
0
votes
1answer
36 views

Updating row directly in ASP.NET using databind() ! Please help me

This is a difficult problem so I found how to solve when cell on table don't receive input value from user . Please show me how retrieve value from updated cell . Please help me . I am very boring ...
0
votes
2answers
35 views

OCMock test for void methods

I am doing OCMocktest for methods that will return some value. How to implement for void methods. Eg a method that calculates Simple interest. But it doesot return any value. How can check the ...
1
vote
3answers
69 views

Returning void from a double function?

I have a function which is a double and normally returns the new value for a variable, but sometimes I don't want to change the variable and I would like to signal that by returning a special value, ...
0
votes
3answers
36 views

void Name(type name1,type name2, type name3[name1][name2] );

I don't know why my Microsoft Visual C++ 2010 Express doesn't support a code like this: void ar(int n,int m, short ar[n][m]); The thing that happens is that the letter n and m gets undercovered in ...
0
votes
2answers
79 views

C - pointer problems and void method problems [closed]

I have problems with the following code in C. Basically I want to create two threads and give them both the integer value of "ergebnis" . After this the threads should have to calculate on this value ...
-2
votes
1answer
39 views

How to implement OCMock test for void methods [closed]

I want to implement OCMock test for void method. Eg: I have method for login. Web service for login feature is implemented in this method. The return type for the login method is void. How can i test ...
0
votes
1answer
109 views

Why not void is a datatype in C? [duplicate]

Today one student came to me and asked me, sir we have int, float, char and all datatypes in C. when we write int i, that means i is an variable of type interger and so on for float f and char c. ...
-2
votes
1answer
33 views

Mancal game confusion final [closed]

I have edited the program it still has player 2 set as the player to go and it is now running great the only problem is when I select bin 9 and player 2 ends in his bin he is told to pick again only ...
1
vote
2answers
60 views

Java: How can I shorten codes which are usen often?

I am working on a Android App. Everything is okay and everything does work but I want to short some commands which are usen very often. Here is a part of my code: public void ButtonKlick (View view) ...
0
votes
0answers
25 views

Mancala coding for bin selection and bin dropping

I am to write out a code that is to ask the player which bin they want to select except it will not "Make selection with beads between 7 and 12." when i set the player==2 and enter binNum 13. I also ...
3
votes
10answers
137 views

Why does this implementation of quicksort return from a void function?

#include<iostream> using namespace std; template <class Item> void quicksort(Item a[], int l, int r) { if (r <= 1) return; int i = partition(a, l, r); quicksort(a, l, ...
0
votes
2answers
74 views

Using “ccsequence” for “dismissViewControllerAnimated” and once it will be dismissed, “replaceScene”

G'day, I have a small question. I'd like to use ccsequence for replacing current running scene with another one just after the view controller will be dismissed, would be nice to have something like ...
2
votes
5answers
153 views

Can you printf value from a void * in C

Ok, I'm trying to do this, but it isn't working becuase I'm not dereferencing the pointer... is there a way to do it without making a switch statement for the type? typedef struct { char ...
0
votes
3answers
68 views

expected unqualified-id before 'void'

I am newbie in C++ programming but also have a need to use C++ code to calibrate interest tree in Black-Derman-Toy model. In book "Modeling Derivatives with C++" have found needed source code. However ...
5
votes
1answer
76 views

Should I use cfreturn in a function with returntype void

What would be the correct way? I think both work, but I wonder if there are benefits from one to the other. <CFFUNCTION name="setSomething" access="public" output="no" returntype="void"> ...
-6
votes
0answers
45 views

Need Help On My Mancala Game PLEASE [duplicate]

I am writing a code for the game mancala and I cant seem to figure out how to properly add up the points and display the proper winner of the game. The game is over when all the middle bins are empty, ...
-4
votes
1answer
66 views

C++ creating a void without having to include it in the header [closed]

I am pretty sure I accomplished this once. I created a "private" void function, and I did not have to state it in the header. I simply used void pDoThis() { pDoAnotherPrivateVoid(); ...
1
vote
1answer
19 views

Random StringByReplacingOccurances of string error that occurs in simulator only

So I have this strange error. I was able to debug my app without any trouble all day but suddenly this weired error message occured even though I didn't change anything... 2013-04-21 01:06:26.617 ...
0
votes
1answer
61 views

Android: from surfaceview back to the menu

i am making a simple game in which i draw a set of bitmaps on a canvas on surface view.. now in my main activity i have a linear layout where i have designed a button. in the onclick of this button i ...
-1
votes
3answers
68 views

What does “void-value is not ignored” error mean and how to remove it?

I try to compile the following code: #include <cppunit/extensions/HelperMacros.h> #include "tested.h" class TestTested : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE(TestTested); ...
0
votes
2answers
30 views

How do you take inputted characters and output them a certain number of times?

I have to write a program that takes two inputted characters and print them out x times using a method. With what I have so far, it will output numbers instead of the characters. How can I fix it? ...
0
votes
1answer
60 views

pthread_create does not work due to void pointer and integer conversion error

How/why do you convert to/from a void pointer or int? The following code wrongly generates compiler errors: while(num_producers > 0) { pthread_t tid; // id of pthread (not used except to ...
0
votes
1answer
56 views

onPostExecute called only when call to another void is not present

I have the following onPostExecute code for an AsyncTask. It runs fine as is. However, when I remove the commented bit of code, I never receive the onPostExecute event (No Toast). @Override protected ...
0
votes
1answer
65 views

How to make a char array and 2 voids 18 times in a for loop each with different names(numbers)?

This is what the code looks like now (or at least the important bits.) these are the (related) errors i get while compiling. (wishing i could put it in a spoiler tag) g15_plugin_uinput.c: In ...
0
votes
0answers
32 views

Call void method (throws IOException) in class that adds ActionListener to a button

I have looked up the try-catch exception but I can't seem to get it to work, it would be a great help to me if anybody could help me figure out my problem. Button Class: enterB.addActionListener ...
1
vote
2answers
57 views

How to return from a non-void function?

I have a function below that searches through a vector of my_type. Currently, it has a compilation warning: control reaches end of non-void function [-Wreturn-type]. It appears that as long as I am ...
1
vote
5answers
102 views

Use of (apparently) empty C function

Can anyone comment on the point of the following function, which appears to do not very much: // Returns stored values int getDetails(const int param1[], int* param2, ...
0
votes
1answer
155 views

Call Static Method of a class from Razor View on jQuery link Click and also passing Strongly typed viewbag

I am trying to pass Strongly Typed ViewBag from Controller to View, then from View call a static method on jquery link click which uses the View bag property as paramater. In Controller, I have ...
1
vote
4answers
56 views

Methods lacking return types and no void?

This piece of code is in my textbook, but what I'm not understanding is the method TestPanels(). It has no return type AND no void. How can this happen? public class TestPanels extends JFrame { ...
-4
votes
3answers
98 views

What is wrong with this c language code? [closed]

I've written this code to permute any number and the following error appears: In function 'int main()': invalid use of void expression #include <stdio.h> #include <stdlib.h> typedef ...
0
votes
2answers
110 views

When does a 'void' method affect the parameter, and when does it affect the original object?

I am brand new to programming, as well as to this website, so forgive me if I screw anything up. I'm having a heck of a time figuring out how to properly post my code in here. package tester; import ...
0
votes
1answer
45 views

Get variable value from another void

I just started programming in XCode and I need your help. I have two voids; in the first void I create a NSString, and in the second void I need the value of that string, but i don't know how to ...
0
votes
2answers
52 views

<C++> Struct the code output

#include <iostream> #define _USE_MATH_DEFINES #include <math.h> using namespace std; struct sphere_t { float radius; }; sphere_t sph = { 5.8 }; void SphereDescription(sphere_t ...
-2
votes
2answers
74 views

Undeclared Identifier after the void

I have got this error on the line where the void is it says undeclared identifier for sliderDidChange can some one please help me with this i can;t find any answers. h. file // // ...
-8
votes
3answers
116 views

C# convert a number into words

I have this private void here private void NumbersToWords(int number) { string word; if (number == 8) { word = "Eight"; } return word; } ...
0
votes
3answers
80 views

Returning array[] from void, C

So when I write a function void sort (int oldarray[], int length) { //imagine there is a function here that runs a loop and finishes with a sorted: newarray[]; } How do I get newarray[] to ...
5
votes
2answers
119 views

How does Java know when a void method has finished its method body?

Let's say I have some code: public int doSomething(int x) { otherMethod(x); System.out.println("otherMethod is complete."); return 0; } public void otherMethod(int y) { //method body ...
1
vote
4answers
112 views

java.lang.Void vs void vs Null

what exactly is the difference between Void, void and can i just use null instead? I'm asking this because I'm looking at sample android code where they used Void but eclipse is breaking on it (it ...
-5
votes
2answers
68 views

Extends Thread and Public Void Run [closed]

I saw a code that goes something like this: class Hello extends Thread { public void run() { try{ ............ }catch(Exception) I'm really confused of what "extends Thread" ...
0
votes
3answers
57 views

trouble with multiple functions and returning values

Trying to make a simple function to return a value stored in a secondary function to the main function in DEV-C++ and I'm not sure why it's not working :/ I really feel like it should be running ...
0
votes
0answers
182 views

Fix code with jqzoom, innerHTML and javascript:void(0); [closed]

I am using jqzoom script (from http://www.mind-projects.it/projects/jqzoom/) in my page. When you enter my website you can see the jqzoom workinf fine. But I have a dropdown menu that when people ...

1 2 3 4 5 9