会员可以在此提问,百战程序员老师有问必答
对大家有帮助的问答会被标记为“推荐”
看完课程过来浏览一下别人提的问题,会帮你学得更全面
截止目前,同学们一共提了 133539个问题

一、提问

请问老师,我在循环辅助一个数组时,在for循环中写了一个if判断句,判断输入的字符串为“s”时,就break;。测试时候却发现即使输入了“s”,循环也没有被终止,请问哪里出错了呢?

二、代码

package com.sxt.UnionLotto;

import java.util.Scanner;

public class UnionLotto {
    static Scanner scan1 = new Scanner(System.in);
    static Scanner scan2 = new Scanner(System.in);
    static String[] redBall = new String[33];
    static String[] blueBall = new String[16];

    public static void buy() {
        System.out.println("#############购买#############");
        System.out.println("红球号码投注");
        for (int i = 1; i < redBall.length; i++) {
            System.out.println("请输入第" + i + "个球号,输入s结束选球:");
            redBall[i - 1] = scan2.nextLine();
            System.out.println("已输入,输入的球号为" + redBall[i - 1]);
            if (redBall[i - 1] == "s") {
                break;
            }
        }
        System.out.println("输入结束");
    }

    public static void main(String[] args) {

        System.out.println("##########开始界面############");
        System.out.println("1.购买彩票");
        System.out.println("2.开奖查询");
        System.out.println("3.阅读规则");
        System.out.println("#############################");
        int instruction;
        instruction = scan1.nextInt();
        if (instruction == 1) {
            buy();
        } else if (instruction == 2) {

        } else if (instruction == 3) {

        } else {

        }
    }

}

三、问题示意图

002.png

JAVA 全系列/第一阶段:AI驱动的JAVA编程/数组和数据存储 5386楼
Python 全系列/第二十阶段:数据分析-数据管理/numpy 5388楼
JAVA 全系列/第二阶段:JAVA 基础深化和提高/网络编程(旧) 5389楼
Python 全系列/第一阶段:Python入门/序列 5391楼
JAVA 全系列/第二阶段:JAVA 基础深化和提高/IO 流技术(旧) 5393楼
JAVA 全系列/第一阶段:AI驱动的JAVA编程/面向对象详解和JVM底层内存分析 5394楼
Python 全系列/第十二阶段:Django智能在线教育平台/Django项目 5395楼

class ComputerFactory:
    __obj = None
    __init_flag = True
    __countLenovo = 0
    __countAsus = 0
    __countHasee = 0
    def __new__(cls, *args, **kwargs):  #单例模式
        if cls.__obj==None:
            cls.__obj = object.__new__(cls)
        return cls.__obj  #new方法创建完成一定要返回我们的实例对象
    def __init__(self):   #单例模式
        if  ComputerFactory.__init_flag:
            print('构造初始化')
            ComputerFactory.__init_flag =  False
    def produce(self,brand):  #工厂模式
        if brand =='联想':
            ComputerFactory.__countLenovo += 1
            return Lenovo()
        elif brand == '华硕':
            ComputerFactory.__countAsus += 1
            return Asus()
        elif brand == '神舟':
            ComputerFactory.__countHasee += 1
            return Hasee()
    def calculate(self):
        a = [ComputerFactory.__countAsus,ComputerFactory.__countLenovo,ComputerFactory.__countHasee]
        print('本公司一共生产了{0}台电脑'.format(sum(a))
class Computer:
    __count = 0
    def __init__(self):
        Computer.__count +=1
    def calculate(self):
        print('生产了{0}台电脑'.format(Computer.__count))
class Lenovo(Computer):
    __num = 0
    def __init__(self):
        # Computer.__init__(self)
        Lenovo.__num +=1
    def calculate(self):
        print('共生产了{0}个联想电脑'.format(Lenovo.__num-1))
class Asus(Computer):
    __num = 0
    def __init__(self):
        # Computer.__init__(self)
        Asus.__num += 1
    def calculate(self):
        print('共生产了{0}个联想电脑'.format(Asus.__num-1))
class Hasee(Computer):
    __num = 0
    def __init__(self):
        # Computer.__init__(self)
        Hasee.__num += 1
    def calculate(self):
        print('共生产了{0}个联想电脑'.format(Hasee.__num-1))
t = ComputerFactory()
h = Computer()
t.produce('联想')
h.calculate()
Lenovo().calculate()
t.calculate()
Lenovo().calculate()


问题:不知道为啥会报这样的错,我反复核实没有格式的错误啊,求指导!老师

blob.png


Python 全系列/第一阶段:Python入门/面向对象 5396楼

课程分类

百战程序员微信公众号

百战程序员微信小程序

©2014-2025百战汇智(北京)科技有限公司 All Rights Reserved 北京亦庄经济开发区科创十四街 赛蒂国际工业园
网站维护:百战汇智(北京)科技有限公司
京公网安备 11011402011233号    京ICP备18060230号-3    营业执照    经营许可证:京B2-20212637