java Main函数怎么调用其他函数。 其他类。
publicclassjava{publicvoidgetInt(){StringstrChar="a(bc)()()dnn()()j";intiX=0;intiY=0;...
public class java {
public void getInt(){
String strChar="a(bc)()()dnn()()j";
int iX=0;
int iY=0;
for(int p=0; p<strChar.length();p++)
{
String getstr=strChar.substring(p,p+1);
if(getstr.equals("(")){iX++;}
if(getstr.equals(")")){iY++;}
}
if(iX>iY)
{
System.out.println(iY);
}
else
{
System.out.println(iX);
}
}
public static void main(String[] args) {
System.out.println("总共有括号对数:");
}
}
帮我看看我这代码肿么改正确 错在哪里.. 谢了. 展开
public void getInt(){
String strChar="a(bc)()()dnn()()j";
int iX=0;
int iY=0;
for(int p=0; p<strChar.length();p++)
{
String getstr=strChar.substring(p,p+1);
if(getstr.equals("(")){iX++;}
if(getstr.equals(")")){iY++;}
}
if(iX>iY)
{
System.out.println(iY);
}
else
{
System.out.println(iX);
}
}
public static void main(String[] args) {
System.out.println("总共有括号对数:");
}
}
帮我看看我这代码肿么改正确 错在哪里.. 谢了. 展开
7个回答
展开全部
因为main函数时static的,所以不能直接调用非static的方法
在你的main函数中创建该类的对象,然后用对象调用方法。
在你的main函数中创建该类的对象,然后用对象调用方法。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public class java {
public static void getInt() {
String strChar = "a(bc)()()dnn()()j";
int iX = 0;
int iY = 0;
for (int p = 0; p < strChar.length(); p++) {
String getstr = strChar.substring(p, p + 1);
if (getstr.equals("(")) {
iX++;
}
if (getstr.equals(")")) {
iY++;
}
}
if (iX > iY) {
System.out.println(iY);
} else {
System.out.println(iX);
}
}
public static void main(String[] args) {
System.out.println("总共有括号对数:");
getInt();
}
}
静态方法只能调用静态方法,你也可以先实例化在class.method();
public static void getInt() {
String strChar = "a(bc)()()dnn()()j";
int iX = 0;
int iY = 0;
for (int p = 0; p < strChar.length(); p++) {
String getstr = strChar.substring(p, p + 1);
if (getstr.equals("(")) {
iX++;
}
if (getstr.equals(")")) {
iY++;
}
}
if (iX > iY) {
System.out.println(iY);
} else {
System.out.println(iX);
}
}
public static void main(String[] args) {
System.out.println("总共有括号对数:");
getInt();
}
}
静态方法只能调用静态方法,你也可以先实例化在class.method();
追问
我不知道我的函数命名有木有错误 public static void getInt() 还有返回值 不懂是什么...
追答
没有错误,void 方法不需要返回值
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询