这两行代码如何对javascript对象矩形执行完全相同的操作?
line1:
rect.setSize(height,widht)
line2:
setRectSize(rect,width,height)
这两行代码中调用的假设函数可能对(假设的)对象 rect 执行完全相同的操作。但是第一行中的方法调用语法更清楚地表明了这样的想法:对象 rect 是操作的主要焦点。
line1:
rect.setSize(height,widht)
line2:
setRectSize(rect,width,height)
The hypothetical functions invoked in these two lines of code may perform exactly the same operation on the (hypothetical) object rect.but the method invocation syntax in the first lines more clearly indicates the idea that it is the object rect that is the primary focus of the operation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设 rect 是一个对象的实例,该对象具有
与执行相同的
方法,现在该函数
您可以看到它执行相同的操作
Assume
rect
is an instance of an object that has a method likethat's the same as doing
Now the function
You can see it does the same thing