英文:
Can a Java constructor promote a type?
问题
如果我理解正确,Java方法可以提升类型:例如,如果方法的参数是两个int,则可以将两个byte变量传递给调用,并且它们将被提升为int。构造函数也是如此吗?如果构造函数的参数是两个int,那么是否可以将两个byte变量传递给它?
英文:
If I understand correctly, Java methods can promote types: for example, if a method's parameters are two ints, two byte variables can be passed to the invocation, and they will be promoted to ints. Is this true of constructors? Could two byte variables be passed to a constructor whose parameters are two ints?
答案1
得分: 1
可以,您可以将字节参数传递给构造函数中的整数参数。
那里发生的情况被称为扩大原始转换。
英文:
Yes, you can pass byte arguments to integer parameters in constructor.
What happens there is called Widening Primitive Conversion
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论