if (this == &other) { return *this; } 这步是判断啥?

时间: 2024-05-31 22:13:08 浏览: 74
这是在C++中实现的赋值运算符重载函数中的一部分,用于检查自我赋值并避免出现问题。在这个条件语句中,"this"是指向当前对象的指针,"&other"是指向传递给函数的另一个对象的指针。如果这两个指针所指向的对象是同一个对象,那么说明这是自我赋值,这时候直接返回*this即可,避免出现错误。否则,可以继续进行赋值操作。
相关问题

@Override public boolean equals(Object that) { if (this == that) { return true; } if (that == null) { return false; } if (getClass() != that.getClass()) { return false; } ApartmentAdmin other = (ApartmentAdmin) that; return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) && (this.getUserName() == null ? other.getUserName() == null : this.getUserName().equals(other.getUserName())) && (this.getPassword() == null ? other.getPassword() == null : this.getPassword().equals(other.getPassword())) && (this.getRoleId() == null ? other.getRoleId() == null : this.getRoleId().equals(other.getRoleId())) && (this.getHeadimg() == null ? other.getHeadimg() == null : this.getHeadimg().equals(other.getHeadimg())) && (this.getPhone() == null ? other.getPhone() == null : this.getPhone().equals(other.getPhone())) && (this.getSex() == null ? other.getSex() == null : this.getSex().equals(other.getSex())) && (this.getBuildingNo() == null ? other.getBuildingNo() == null : this.getBuildingNo().equals(other.getBuildingNo())) && (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime())) && (this.getIsLock() == null ? other.getIsLock() == null : this.getIsLock().equals(other.getIsLock())); }请详细解释每一行代码

这是一个Java类中的重写 equals 方法,用于比较两个对象是否相等。具体解释如下: 1. 第一行 @Override 注解表示该方法是重写了父类的 equals 方法。 2. 第二行开始是方法的定义,public 表示该方法是公共的,可以被其他类访问和调用;boolean 表示该方法返回一个布尔类型的值,即判断两个对象是否相等,返回true表示相等,返回false表示不相等。 3. 参数 Object that 表示传入该方法的对象,Object 是 Java 中所有类的父类,因此该方法可以接收任何类型的对象作为参数。 4. 第四行 if (this == that) 判断传入的对象是否与当前对象相同,如果是,则直接返回 true,表示两个对象相等。 5. 第五行 if (that == null) 判断传入的对象是否为 null,如果是,则直接返回 false,表示两个对象不相等。 6. 第六行 if (getClass() != that.getClass()) 判断传入的对象是否属于当前对象所属的类,如果不是,则直接返回 false,表示两个对象不相等。 7. 第七行到第十四行是比较两个对象中的属性是否相等,如果相等,则返回 true,否则返回 false。其中使用了三元运算符,如果属性为 null,则需要使用 equals 方法进行判断,而不能直接使用 == 进行判断。 8. 最后,该方法判断的属性包括:id、用户名、密码、角色id、头像、电话、性别、楼号、创建时间、是否锁定。

这段函数代表什么 public int compareTo(WindowContainer other) { Slog.d("huangbg", Log.getStackTraceString( new Throwable())); Slog.d("huangbg","other = " + other); if (this == other) { Slog.d("huangbg"," compareTo 929"); return 0; } Slog.d("huangbg"," mParent = " + mParent); if (mParent != null && mParent == other.mParent) { Slog.d("huangbg"," compareTo 934"); final WindowList<WindowContainer> list = mParent.mChildren; return list.indexOf(this) > list.indexOf(other) ? 1 : -1; } final LinkedList<WindowContainer> thisParentChain = mTmpChain1; final LinkedList<WindowContainer> otherParentChain = mTmpChain2; try { getParents(thisParentChain); other.getParents(otherParentChain); // Find the common ancestor of both containers. WindowContainer commonAncestor = null; WindowContainer thisTop = thisParentChain.peekLast(); WindowContainer otherTop = otherParentChain.peekLast(); while (thisTop != null && otherTop != null && thisTop == otherTop) { commonAncestor = thisParentChain.removeLast(); otherParentChain.removeLast(); thisTop = thisParentChain.peekLast(); otherTop = otherParentChain.peekLast(); } Slog.d("huangbg"," commonAncestor = " + commonAncestor); // Containers don't belong to the same hierarchy??? if (commonAncestor == null) { throw new IllegalArgumentException("No in the same hierarchy this=" + thisParentChain + " other=" + otherParentChain); } // Children are always considered greater than their parents, so if one of the containers // we are comparing it the parent of the other then whichever is the child is greater. if (commonAncestor == this) { Slog.d("huangbg"," compareTo 965"); return -1; } else if (commonAncestor == other) { Slog.d("huangbg"," compareTo 968"); return 1; } Slog.d("huangbg"," compareTo 971"); // The position of the first non-common ancestor in the common ancestor list determines // which is greater the which. final WindowList<WindowContainer> list = commonAncestor.mChildren; return list.indexOf(thisParentChain.peekLast()) > list.indexOf(otherParentChain.peekLast()) ? 1 : -1; } finally { mTmpChain1.clear(); mTmpChain2.clear(); } }

这段代码是一个比较函数,它重写了 Java 中的 Comparable 接口中的 compareTo 方法。它的作用是用于比较两个 WindowContainer 对象的大小。在代码中,首先使用了 Slog.d() 方法输出了一些日志,用于调试。然后比较了 this 和 other 两个对象是否相等,如果相等,返回 0;否则返回其他值。
阅读全文

相关推荐

class Complex implements Cloneable{ private double real; private double imaginary; public Complex(){ this.real = 0; this.imaginary = 0; } public Complex(double a){ this.real = a; this.imaginary = 0; } public Complex(double a, double b){ this.real = a; this.imaginary = b; } public double getRealPart(){ return this.real; } public double getImaginaryPart(){ return this.imaginary; } public String toString(){ if(this.imaginary==0){ return this.real + ""; } else if(this.real==0){ return this.imaginary + "i"; } else{ return this.real + " + " + this.imaginary + "i"; } } public Complex add(Complex other){ double newReal = this.real + other.getRealPart(); double newImaginary = this.imaginary + other.getImaginaryPart(); return new Complex(newReal, newImaginary); } public Complex subtract(Complex other){ double newReal = this.real - other.getRealPart(); double newImaginary = this.imaginary - other.getImaginaryPart(); return new Complex(newReal, newImaginary); } public Complex multiply(Complex other){ double newReal = this.real * other.getRealPart() - this.imaginary * other.getImaginaryPart(); double newImaginary = this.real * other.getImaginaryPart() + this.imaginary * other.getRealPart(); return new Complex(newReal, newImaginary); } public Complex divide(Complex other){ double denominator = Math.pow(other.getRealPart(),2) + Math.pow(other.getImaginaryPart(),2); double newReal = (this.real * other.getRealPart() + this.imaginary * other.getImaginaryPart()) / denominator; double newImaginary = (this.imaginary * other.getRealPart() - this.real * other.getImaginaryPart()) / denominator; return new Complex(newReal, newImaginary); } public double abs(){ return Math.sqrt(Math.pow(this.real, 2) + Math.pow(this.imaginary, 2)); } public Object clone; public Object clone() throws CloneNotSupportedException{ return super.clone(); }生成这段代码的uml图

详细分析一下分析代码的封装 private final double initialPrice; private double currentValuation; private final Random random = new Random(); //constructors public MarketProperty(String id, String category, double size, double initialPrice) { super(id, category, size); this.initialPrice = initialPrice; this.currentValuation = this.initialPrice; } //methods /Through takes two parameters and updates thecurrent valuaton of the property based on a random value generated using the inflacyion rate and volatility ./ public void updateValuation(double inflationRate, double volatility) { double gaussian = Math.sqrt(volatility * volatility) * random.nextGaussian() + inflationRate; this.currentValuation = initialPrice * (1 + gaussian); } //getters public double getInitialPrice() { return initialPrice; } public double getCurrentValuation() { return this.currentValuation; } public double getTotalProfit() { return currentValuation - this.initialPrice; } public double getRelativeProfit() { return getTotalProfit() / this.initialPrice; } @Override public String toString() { return "ID : " + getID() + ", Initial Price = " + getInitialPrice() + ", Current Valuation= " + getCurrentValuation() + "."; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } final MarketProperty other = (MarketProperty) obj; return Objects.equals(this.currentValuation, other.currentValuation); } @Override public int hashCode() { int hash = 7; hash = 67 * hash + (int) (Double.doubleToLongBits(this.initialPrice) ^ (Double.doubleToLongBits(this.initialPrice) >>> 32)); hash = 67 * hash + (int) (Double.doubleToLongBits(this.currentValuation) ^ (Double.doubleToLongBits(this.currentValuation) >>> 32)); return hash; } //MarketProperties are compared by theircurrent valuation public int compareTo(MarketProperty other) { return Double.compare(this.currentValuation, other.currentValuation);

public class WxMpAddDraft implements ToJson, Serializable { private static final long serialVersionUID = 2481699972367293721L; @SerializedName("articles") private List<WxMpDraftArticles> articles; public static WxMpAddDraft fromJson(String json) { return (WxMpAddDraft)WxGsonBuilder.create().fromJson(json, WxMpAddDraft.class); } public String toJson() { return WxGsonBuilder.create().toJson(this); } public static WxMpAddDraftBuilder builder() { return new WxMpAddDraftBuilder(); } public List<WxMpDraftArticles> getArticles() { return this.articles; } public WxMpAddDraft setArticles(List<WxMpDraftArticles> articles) { this.articles = articles; return this; } public boolean equals(Object o) { if (o == this) { return true; } else if (!(o instanceof WxMpAddDraft)) { return false; } else { WxMpAddDraft other = (WxMpAddDraft)o; if (!other.canEqual(this)) { return false; } else { Object this$articles = this.getArticles(); Object other$articles = other.getArticles(); if (this$articles == null) { if (other$articles != null) { return false; } } else if (!this$articles.equals(other$articles)) { return false; } return true; } } } protected boolean canEqual(Object other) { return other instanceof WxMpAddDraft; } public int hashCode() { int PRIME = true; int result = 1; Object $articles = this.getArticles(); result = result * 59 + ($articles == null ? 43 : $articles.hashCode()); return result; } public String toString() { return "WxMpAddDraft(articles=" + this.getArticles() + ")"; } public WxMpAddDraft() { } public WxMpAddDraft(List<WxMpDraftArticles> articles) { this.articles = articles; } public static class WxMpAddDraftBuilder { private List<WxMpDraftArticles> articles; WxMpAddDraftBuilder() { } public WxMpAddDraftBuilder articles(List<WxMpDraftArticles> articles) { this.articles = articles; return this; } public WxMpAddDraft build() { return new WxMpAddDraft(this.articles); } public String toString() { return "WxMpAddDraft.WxMpAddDraftBuilder(articles=" + this.articles + ")"; } } }

最新推荐

recommend-type

java中 == 与 equal 的区别讲解

if (this == obj) { return true; } if (obj == null || getClass() != obj.getClass()) { return false; } Student other = (Student) obj; return id == other.id; } @Override public int hashCode() { ...
recommend-type

C语言 if else 语句详细讲解

else printf("This is an other character\n"); return 0; } ``` 在这个例子中,程序根据输入的字符值判断其属于哪一类,并输出相应的信息。 总结起来,`if else`语句是C语言中实现条件控制的重要工具,能够根据...
recommend-type

(完整数据)全国五级行政区划数据2009-2023年

## 数据指标说明 一、数据介绍:行政区划数据是基础地理信息数据,当研究需要精确到地市级、区县级、乡镇村等地区层面时,区划代码就比较重要,并整理得到包含区县级,地市级,省级,乡镇等区划代码和城乡划分代码。 数据民政部收集行政区划代码,参考民政部代码和国际通用属性命名规则,对各省级、地级市级,区县级,乡镇和村级,数据包含2009年至2023年五级行政区划名称级代码。 数据名称:全国五级行政区划 数据年份:2009-2023年 二、具体指标:省、市、区/县、街道、居委会、区划代码、城乡分类代码
recommend-type

【路径规划】堆算法栅格地图机器人路径规划【含Matlab仿真 2816期】.zip

CSDN Matlab武动乾坤上传的资料均有对应的仿真结果图,仿真结果图均是完整代码运行得出,完整代码亲测可用,适合小白; 1、完整的代码压缩包内容 主函数:main.m; 调用函数:其他m文件;无需运行 运行结果效果图; 2、代码运行版本 Matlab 2019b;若运行有误,根据提示修改;若不会,私信博主; 3、运行操作步骤 步骤一:将所有文件放到Matlab的当前文件夹中; 步骤二:双击打开main.m文件; 步骤三:点击运行,等程序运行完得到结果; 4、仿真咨询 如需其他服务,可私信博主或扫描博客文章底部QQ名片; 4.1 博客或资源的完整代码提供 4.2 期刊或参考文献复现 4.3 Matlab程序定制 4.4 科研合作
recommend-type

大学生职业生涯规划书 (1).pptx

大学生职业生涯规划书 (1).pptx
recommend-type

MATLAB新功能:Multi-frame ViewRGB制作彩色图阴影

资源摘要信息:"MULTI_FRAME_VIEWRGB 函数是用于MATLAB开发环境下创建多帧彩色图像阴影的一个实用工具。该函数是MULTI_FRAME_VIEW函数的扩展版本,主要用于处理彩色和灰度图像,并且能够为多种帧创建图形阴影效果。它适用于生成2D图像数据的体视效果,以便于对数据进行更加直观的分析和展示。MULTI_FRAME_VIEWRGB 能够处理的灰度图像会被下采样为8位整数,以确保在处理过程中的高效性。考虑到灰度图像处理的特异性,对于灰度图像建议直接使用MULTI_FRAME_VIEW函数。MULTI_FRAME_VIEWRGB 函数的参数包括文件名、白色边框大小、黑色边框大小以及边框数等,这些参数可以根据用户的需求进行调整,以获得最佳的视觉效果。" 知识点详细说明: 1. MATLAB开发环境:MULTI_FRAME_VIEWRGB 函数是为MATLAB编写的,MATLAB是一种高性能的数值计算环境和第四代编程语言,广泛用于算法开发、数据可视化、数据分析以及数值计算等场合。在进行复杂的图像处理时,MATLAB提供了丰富的库函数和工具箱,能够帮助开发者高效地实现各种图像处理任务。 2. 图形阴影(Shadowing):在图像处理和计算机图形学中,阴影的添加可以使图像或图形更加具有立体感和真实感。特别是在多帧视图中,阴影的使用能够让用户更清晰地区分不同的数据层,帮助理解图像数据中的层次结构。 3. 多帧(Multi-frame):多帧图像处理是指对一系列连续的图像帧进行处理,以实现动态视觉效果或分析图像序列中的动态变化。在诸如视频、连续医学成像或动态模拟等场景中,多帧处理尤为重要。 4. RGB 图像处理:RGB代表红绿蓝三种颜色的光,RGB图像是一种常用的颜色模型,用于显示颜色信息。RGB图像由三个颜色通道组成,每个通道包含不同颜色强度的信息。在MULTI_FRAME_VIEWRGB函数中,可以处理彩色图像,并生成彩色图阴影,增强图像的视觉效果。 5. 参数调整:在MULTI_FRAME_VIEWRGB函数中,用户可以根据需要对参数进行调整,比如白色边框大小(we)、黑色边框大小(be)和边框数(ne)。这些参数影响着生成的图形阴影的外观,允许用户根据具体的应用场景和视觉需求,调整阴影的样式和强度。 6. 下采样(Downsampling):在处理图像时,有时会进行下采样操作,以减少图像的分辨率和数据量。在MULTI_FRAME_VIEWRGB函数中,灰度图像被下采样为8位整数,这主要是为了减少处理的复杂性和加快处理速度,同时保留图像的关键信息。 7. 文件名结构数组:MULTI_FRAME_VIEWRGB 函数使用文件名的结构数组作为输入参数之一。这要求用户提前准备好包含所有图像文件路径的结构数组,以便函数能够逐个处理每个图像文件。 8. MATLAB函数使用:MULTI_FRAME_VIEWRGB函数的使用要求用户具备MATLAB编程基础,能够理解函数的参数和输入输出格式,并能够根据函数提供的用法说明进行实际调用。 9. 压缩包文件名列表:在提供的资源信息中,有两个压缩包文件名称列表,分别是"multi_frame_viewRGB.zip"和"multi_fram_viewRGB.zip"。这里可能存在一个打字错误:"multi_fram_viewRGB.zip" 应该是 "multi_frame_viewRGB.zip"。需要正确提取压缩包中的文件,并且解压缩后正确使用文件名结构数组来调用MULTI_FRAME_VIEWRGB函数。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

【实战篇:自定义损失函数】:构建独特损失函数解决特定问题,优化模型性能

![损失函数](https://img-blog.csdnimg.cn/direct/a83762ba6eb248f69091b5154ddf78ca.png) # 1. 损失函数的基本概念与作用 ## 1.1 损失函数定义 损失函数是机器学习中的核心概念,用于衡量模型预测值与实际值之间的差异。它是优化算法调整模型参数以最小化的目标函数。 ```math L(y, f(x)) = \sum_{i=1}^{N} L_i(y_i, f(x_i)) ``` 其中,`L`表示损失函数,`y`为实际值,`f(x)`为模型预测值,`N`为样本数量,`L_i`为第`i`个样本的损失。 ## 1.2 损
recommend-type

在Flow-3D中如何根据水利工程的特定需求设定边界条件和进行网格划分,以便准确模拟水流问题?

要在Flow-3D中设定合适的边界条件和进行精确的网格划分,首先需要深入理解水利工程的具体需求和流体动力学的基本原理。推荐参考《Flow-3D水利教程:边界条件设定与网格划分》,这份资料详细介绍了如何设置工作目录,创建模拟文档,以及进行网格划分和边界条件设定的全过程。 参考资源链接:[Flow-3D水利教程:边界条件设定与网格划分](https://wenku.csdn.net/doc/23xiiycuq6?spm=1055.2569.3001.10343) 在设置边界条件时,需要根据实际的水利工程项目来确定,如在模拟渠道流动时,可能需要设定速度边界条件或水位边界条件。对于复杂的
recommend-type

XKCD Substitutions 3-crx插件:创新的网页文字替换工具

资源摘要信息: "XKCD Substitutions 3-crx插件是一个浏览器扩展程序,它允许用户使用XKCD漫画中的内容替换特定网站上的单词和短语。XKCD是美国漫画家兰德尔·门罗创作的一个网络漫画系列,内容通常涉及幽默、科学、数学、语言和流行文化。XKCD Substitutions 3插件的核心功能是提供一个替换字典,基于XKCD漫画中的特定作品(如漫画1288、1625和1679)来替换文本,使访问网站的体验变得风趣并且具有教育意义。用户可以在插件的选项页面上自定义替换列表,以满足个人的喜好和需求。此外,该插件提供了不同的文本替换样式,包括无提示替换、带下划线的替换以及高亮显示替换,旨在通过不同的视觉效果吸引用户对变更内容的注意。用户还可以将特定网站列入黑名单,防止插件在这些网站上运行,从而避免在不希望干扰的网站上出现替换文本。" 知识点: 1. 浏览器扩展程序简介: 浏览器扩展程序是一种附加软件,可以增强或改变浏览器的功能。用户安装扩展程序后,可以在浏览器中添加新的工具或功能,比如自动填充表单、阻止弹窗广告、管理密码等。XKCD Substitutions 3-crx插件即为一种扩展程序,它专门用于替换网页文本内容。 2. XKCD漫画背景: XKCD是由美国计算机科学家兰德尔·门罗创建的网络漫画系列。门罗以其独特的幽默感著称,漫画内容经常涉及科学、数学、工程学、语言学和流行文化等领域。漫画风格简洁,通常包含幽默和讽刺的元素,吸引了全球大量科技和学术界人士的关注。 3. 插件功能实现: XKCD Substitutions 3-crx插件通过内置的替换规则集来实现文本替换功能。它通过匹配用户访问的网页中的单词和短语,并将其替换为XKCD漫画中的相应条目。例如,如果漫画1288、1625和1679中包含特定的短语或词汇,这些内容就可以被自动替换为插件所识别并替换的文本。 4. 用户自定义替换列表: 插件允许用户访问选项页面来自定义替换列表,这意味着用户可以根据自己的喜好添加、删除或修改替换规则。这种灵活性使得XKCD Substitutions 3成为一个高度个性化的工具,用户可以根据个人兴趣和阅读习惯来调整插件的行为。 5. 替换样式与用户体验: 插件提供了多种文本替换样式,包括无提示替换、带下划线的替换以及高亮显示替换。每种样式都有其特定的用户体验设计。无提示替换适用于不想分散注意力的用户;带下划线的替换和高亮显示替换则更直观地突出显示了被替换的文本,让更改更为明显,适合那些希望追踪替换效果的用户。 6. 黑名单功能: 为了避免在某些网站上无意中干扰网页的原始内容,XKCD Substitutions 3-crx插件提供了黑名单功能。用户可以将特定的域名加入黑名单,防止插件在这些网站上运行替换功能。这样可以保证用户在需要专注阅读的网站上,如工作相关的平台或个人兴趣网站,不会受到插件内容替换的影响。 7. 扩展程序与网络安全: 浏览器扩展程序可能会涉及到用户数据和隐私安全的问题。因此,安装和使用任何第三方扩展程序时,用户都应该确保来源的安全可靠,避免授予不必要的权限。同时,了解扩展程序的权限范围和它如何处理用户数据对于保护个人隐私是至关重要的。 通过这些知识点,可以看出XKCD Substitutions 3-crx插件不仅仅是一个简单的文本替换工具,而是一个结合了个人化定制、交互体验设计以及用户隐私保护的实用型扩展程序。它通过幽默风趣的XKCD漫画内容为用户带来不一样的网络浏览体验。