虚函数是“无效”的,因为它们不应该返回值。是的,但不完全是。我们不能返回值,但是我们肯定可以从void函数中返回某些东西。下面列出了一些情况。
void函数可以返回
我们可以简单地在void fun()中编写return语句。实际上,(为了提高代码的可读性)写返回值被认为是一个好习惯;表示函数结束的语句。
#include
using namespace std;
void fun()
{
cout << "Hello";
// We can write return in void
return;
}
int main()
{
fun();
return 0;
}
输出 :
Hello
一个void fun()可以返回另一个void函数
// C++ code to demonstrate void()
// returning void()
#include
using namespace std;
// A sample void function
void work()
{
cout << "The void function has returned "
" a void() !!! \n";
}
// Driver void() returning void work()
void test()
{
// Returning void function
return work();
}
int main()
{
// Calling void function
test();
return 0;
}
输出:
The void function has returned a void() !!!
上面的代码说明了void()实际上如何在不给出错误的情况下有效地返回void函数。
void()可以返回void值。
void()无法返回可以使用的值。但是它可以返回一个无效的值而不会给出错误。
// C++ code to demonstrate void()
// returning a void value
#include
using namespace std;
// Driver void() returning a void value
void test()
{
cout << "Hello";
// Returning a void value
return (void)"Doesn't Print";
}
int main()
{
test();
return 0;
}
输出:
Hello
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。