以下这段代码会输出什么? 为什么?
#include<bits/stdc++.h>
using namespace std;
bool isMatch(int s)
{
bool ret = false;
if (s > 10)
{
return true;
}
}
int main()
{
bool bRet = false;
bRet = isMatch(2);
if (bRet == true)
{
cout<<"true"<<endl;
}
else
{
cout<<"false"<<endl;
}
}