java类只读怎么办_如何在Java中制作一个只读类?

java类只读怎么办

The question is that "can we make a read-only class in Java?"

问题是“我们可以用Java制作一个只读类吗?”

The answer is: "Yes, we can make a read-only in java."

答案是: “是的,我们可以在Java中将其设为只读。”

在Java中定义只读类 (Defining read-only class in Java)

Now, we will see in few steps, how to make Read-only class and the various steps in given below:

现在,我们将在几个步骤中看到如何制作只读类以及下面给出的各个步骤:

We can make a class read-only by making all of the data members private.

我们可以通过将所有数据成员设为私有来将类设为只读。

Please note:

请注意:

  • If we make a class read-only, then we can’t modify the properties or data members value of the class.

    如果我们将类设为只读,则无法修改该类的属性或数据成员值。

  • If we make a class read-only, then we can only read the properties or data members value of the class.

    如果我们将类设为只读,则只能读取该类的属性或数据成员值。

  • The read-only class will contain only getter methods which return the value of the private properties to the main() function.

    只读类将仅包含将私有属性的值返回给main()函数的getter方法。

  • The read-only class can contain setter methods if we want to modify the value of the private properties after reading because there is our choice to keep setter method in the class but as per based on the concepts we should not contain.

    如果我们想在读取后修改私有属性的值,则只读类可以包含setter方法,因为可以选择将setter方法保留在类中,但是根据我们不应该包含的概念。

Now, we will see the objective of the getter method, why it is required?

现在,我们将看到getter方法的目标,为什么需要它?

Few points need to remember about getter methods are given below:

以下是关于getter方法需要记住的几点:

  • As we know that "private" data member of the class is accessible in the same class only.

    众所周知,该类的“私有”数据成员只能在同一类中访问。

  • Let suppose we want to access "private" data member of the class in outside class. So, in that case, we need to declare public "getter" methods.

    假设我们要在外部类中访问该类的“私有”数据成员。 因此,在这种情况下,我们需要声明公共的“ getter”方法。

  • The objective of the getter method is used to view the private variable values.

    getter方法的目标用于查看私有变量值。

Syntax:

句法:

    public returntype getDataMember_Name();

In the Getter method, it is not mandatory the same data member name after get, but it is convenient for our understanding that we should consider the same name as the data member after get.

在Getter方法中,获取后并不一定要使用相同的数据成员名称,但是对于我们理解而言,方便的是,我们应该考虑与获取后的数据成员使用相同的名称。

There are few advantages of getter methods are given below:

下面给出了getter方法的一些优点:

  • Hiding the internal representation of the private data member.

    隐藏私有数据成员的内部表示。

  • Getter methods provide access level hierarchy.

    Getter方法提供访问级别层次结构。

  • This method adds additional functionality easily later.

    此方法以后可以轻松添加其他功能。

  • This class allows getter methods to be passed around as lambda expressions rather than values.

    此类允许getter方法作为lambda表达式而不是值传递。

  • The private data member is accessible from outside the class with the help of getter methods.

    可以使用getter方法从类外部访问私有数据成员。

Example:

例:

// Java program to demonstrate the example of 
// making Read-only class in Java
public class Weeks {
// Private Data Member Declaration
private String days = "7 days";
// Defining Getter method to return the value of
// private properties.
public String getDays() {
return days;
}
public static void main(String[] args) {
// Weeks object instanstiation
Weeks w = new Weeks();
// Get the value of the private member
String result = w.getDays();
// Display the value of the private properties
System.out.println("Days in a Week:" + " " + result);
}
}

Output

输出量

Days in a Week: 7 days

翻译自: https://www.includehelp.com/java/how-to-make-a-read-only-class-in-java.aspx

java类只读怎么办

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/378135.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

LeetCode 53:最大子序和解题以及优化思路(第一次独立刷题记录)

给定一个整数数组 nums ,找到一个具有最大和的连续子数组(子数组最少包含一个元素),返回其最大和。 示例: 输入: [-2,1,-3,4,-1,2,1,-5,4] 输出: 6 解释: 连续子数组 [4,-1,2,1] 的和最大,为 6。 进阶: 如果你已经实现…

NHibernate 的 ID 标识选择器

在 Hibernate 中,每个对象需要一个标识 ID,通过这个标识 ID 建立对象与数据库中记录的对应关系。 Nhibernate 提供了多种方式来建立这个 POID。基于不同的生成策略,可以选择更佳的方式。 首先是赋值方式:assigned,这种…

三、规则组织的衍生组织——经山形组织数学模型的建立

基础概念公式推到可参考该专栏下的前几篇博文。 经山形组织图: 左半部分:,3上2下1上2下,右斜,飞数为1 右半部分:,3上2下1上2下,左斜,飞数为-1 左右两部分只有飞数是相…

c语言 函数的参数传递示例_scalbln()函数以及C ++中的示例

c语言 函数的参数传递示例C scalbln()函数 (C scalbln() function) scalbln() function is a library function of cmath header. It scales the significand using floating-point base exponent (long int) i.e. it is used to calculate the product of the given signific…

上周热点回顾(7.8-7.14)

热点随笔: MingQQ v1.0高仿版开源了,使用WebQQ协议实现了QQ客户端基本的聊天功能...(ZYM) 我的新书--《从员工到经理人》(Jimmy Zhang) MVC实用架构设计(三&#xff0…

储存过程生成器

/Files/qanholas/SPGen_ReleaseCandidate1_Binaries.zip ---- Dropping stored procedure sp_费用表_SelectAll : --IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id OBJECT_ID(N[sp_费用表_SelectAll]) AND OBJECTPROPERTY(id, NIsProcedure) 1)DROP PROCEDURE [dbo].[sp…

基于计算机控制的温度检测系统,基于专用温度传感的温度检测系统.doc

基于专用温度传感的温度检测系统摘 要 在现代工业领域温度检测系统是指用某种方式显示出当前的环境温度。传统使用PTC或NTC电阻作为温度传感器的方式在使用过程中存在着很多不足之处比如所采集温度的精度比较低、系统的可靠性差、设计难度较大、整体设计成本较高等缺点已…

LeetCode 121:买卖股票的最佳时机 思考分析

题目描述: 给定一个数组,它的第 i 个元素是一支给定股票第 i 天的价格。 如果你最多只允许完成一笔交易(即买入和卖出一支股票一次),设计一个算法来计算你所能获取的最大利润。 注意:你不能在买入股票前卖出…

四、规则组织的衍生组织——经向破斜组织数学模型的建立

基础概念公式推到可参考该专栏下的前几篇博文。 经向破斜组织图: 左半部分:,3上2下1上2下,右斜,飞数为1 右半部分:,2上1下2上3下。左斜,飞数为-1 左右两部分,经纬纱组织…

EASYUI+MVC4通用权限管理平台

通用权限案例平台在经过几年的实际项目使用,并取得了不错的用户好评。在平台开发完成后,特抽空总结一下平台知识,请各位在以后的时间里,关注博客的更新。 1.EASYUIMVC4通用权限管理平台--前言 2.通用权限管理平台--架构选型 3.通用…

int max+1小于0_INT_MAX常数,C ++中的示例

int max1小于0C INT_MAX宏常量 (C INT_MAX macro constant) INT_MAX constant is a macro constant which is defied in climits header, it is used to get the maximum value of a signed int object, it returns the maximum value that a signed int object can store, wh…

在计算机领域客观事物的属性表示为数据,数据与信息试题解析

一图看懂数据与信息1、在计算机领域,信息是经过转化而成为计算机能够处理的__________。A.数据B.符号C.图形D.数字答案:A。解析:本题考查有关信息基本概念的知识。信息是人们由客观事物得到的。…

Mysql Data 目录和 Binlog 目录 搬迁

Mysql5.1.38 Data 目录和 Binlog 目录 搬迁 [mysql-bin.index not found (Errcode: 2)]Leave a comment Go to comments刚开始安装时使用了默认目录,使用一段时间,数据慢慢变在,发现当前设置的目录空间不够时,就要搬迁数据到另一个…

【数据结构基础】【散列表】

散列表也叫做哈希表(hash table),这种数据结构提供了键(key)和值(value)的映射关系。只要给出一个key,就可以高效查找它匹配的value,时间复杂度接近O(1); 哈希函数 哈希函数通过某种方式,把key和数组下标进行转换。 在java中,每…

VisualStudio运行C++项目检测include<stdio.h>报错解决方案

一、项目—>属性 二、将SDL检查更改为否即可

事业单位计算机技术岗工资,事业单位新入职的人员在管理岗位和技术岗位工资待遇是否有区别?...

解答于: 2016-05-24 17:17工伤保险条例对工伤工资待遇有说明: 第三十一条职工因工作遭受事故伤害或者患职业病需要暂停工作接受工伤医疗的,在停工留薪期内,原工资福利待遇不变,由所在单位按月支付。  停工留薪期一般…

信息设计中的“父子关系”

交互设计工作核心在于信息架构和交互细节设计。信息架构包括信息分类以及信息展示逻辑设计;交互细节则多表现为控件的选择,交互效果的定义等。在信息设计中,遇到最棘手的问题就是信息量太多而显得设计结果不尽人意,那么在砍不掉需…

python 示例_带有示例的Python文件关闭属性

python 示例文件关闭属性 (File closed Property) closed Property is an inbuilt property of File object (IO object) in Python, it can be used to check whether a file object (i.e. a file) is closed or not, this is a read-only property and returns a Boolean val…

[Object-oriented] : 控制反转

前言 : 参加点部落的活动,关于IoC(控制反转)大家有很多的讨论。本文排除对象生成的部份,单纯解释IoC为甚么叫做控制反转。本篇文章以之前写的 [Object-oriented] : 重用内容来举例。 未IoC之前的对象图 : 很明显的左边的组件A,相依右边的组件…

二、规则组织数学模型的建立

一、规则组织数学模型的建立 规则组织满足两个不变:1,组织点运动规律不变、2,飞数不变的单系统组织 即:若知道组织点运动规律和飞数即可确定唯一一个组织。 3上2下,组织循环数为325,经纱循环数纬纱循环数…