gpt4 book ai didi

java - 创建新对象时使用 char

转载 作者:行者123 更新时间:2023-12-02 06:49:40 26 4
gpt4 key购买 nike

我有一个学生类(class),在创建对象时我需要将成绩作为角色。如何在对象参数中写入它?如果我使用引号,它认为它是一个字符串,如果我只写 A 级,它认为它是一个变量。参数为:

String name
String Adress
Integer birthdate
Integer age
String course
char grade
String school

Student Student1 = new Student("John", "Random street 1", 891117, 23, "Java", A, "HIG" );

最佳答案

字符用单引号括起来 '

Student Student1 = 
new Student("John", "Random street 1", 891117, 23, "Java", 'A', "HIG" );

关于java - 创建新对象时使用 char,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18205417/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com