C#中怎么调用bool类型的方法 10
比如说有一个方法privateboolMatch(stringstr){inti=0;stringx="";SqStackClassst=newSqStackClass(...
比如说有一个方法 private bool Match(string str)
{
int i = 0;
string x = "";
SqStackClass st = new SqStackClass();
while (i < str.Length)
{
if (str[i] == '(')
st.Push("(");
else
if (str[i] == ')')
{
if (!st.StackEmpty())
st.Pop(ref x);
else
return false;
}
i++;
}
if (st.StackEmpty())
return true;
else
return false;
}
我要在控件中调用这个方法,我该怎么调用? 展开
{
int i = 0;
string x = "";
SqStackClass st = new SqStackClass();
while (i < str.Length)
{
if (str[i] == '(')
st.Push("(");
else
if (str[i] == ')')
{
if (!st.StackEmpty())
st.Pop(ref x);
else
return false;
}
i++;
}
if (st.StackEmpty())
return true;
else
return false;
}
我要在控件中调用这个方法,我该怎么调用? 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询