- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
这里引用 Bruce Eckel 的书“Thinking in Java”:
The method argument list specifies what information you pass into the method. As you might guess, this information—like everything else in Java—takes the form of objects. So, what you must specify in the argument list are the types of the objects to pass in and the name to use for each one.
我不明白。我认为您可以将基元传递给方法(例如 int),而基元不是对象。例如:
public static int multiply(int x, int y){
return x * y;
这是一个方法,里面只有基元,根本没有对象。
最佳答案
作者并没有说只有 对象可以传递给方法。这句话出现在名为“一切皆对象”的章节中。它旨在突出语言的面向对象方面,但它也包括一个关于原语的部分,解释它们是一种特殊情况。
尽管如此,您所说的仅采用原始类型的方法仍然是正确的,但“特殊情况:原始类型”部分隐含地涵盖了这一点。
关于java - 为什么 Bruce Eckel 说只能将对象传递给 Java 中的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29315957/
我正在阅读“Thinking in java”中的泛型章节。该程序在下面。 public class GenericWriting { static void writeExact(List
我一直在阅读 Thinking in python布鲁斯埃克尔。目前,我正在阅读模式概念一章。在本章中,Eckel 展示了单例在 python 中的不同实现。但是我对Alex Martelli的单例代
以下是 Bruce Eckel 的 Thinking in C++ 的一段话(第 1 卷,第 2 版,第 11 章)在“成员指针”标题下: …a pointer needs an address, b
这里引用 Bruce Eckel 的书“Thinking in Java”: The method argument list specifies what information you pass
有谁知道如何在 java 文件中构建 Bruce eckels 的 Thinking 以在 Eclipse 上运行。并且能够把它解释清楚。我已经尝试了好几天了,使用 stackoverflow 但没有
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我有这个小c代码 int main (){ int in [50]; int res [50]; int avg=0; int i=0; int j=
我正在实模式下编写 C 程序。程序将加载到0x2000:0x0000地址并运行。 DS 寄存器等于CS,即0x2000。我也在用 bochs 调试。 我的目标是在屏幕上打印一些文本。所以我需要内联汇编
我是一名优秀的程序员,十分优秀!