Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的,这是一个非常快速的问答问题:如果我在 Java 小程序中声明了一种字体,我可以将它作为参数发送到不同的方法吗?
例子:
methodName(String str, Font font)
我可以这样做吗?^^^
任何扩展Object或原始类型的东西都可以作为参数发送。这包括Font.
Object
Font
丹说得对,也很有礼貌。你可以将任何东西传递给函数。这包括:原语(int、double、char 等)、对象(Font、String、Scanner 等)和用户定义的类。
是的,任何对象都可以作为参数传递给适当的方法。
答案是肯定的,您在发布问题之前没有尝试过吗?