如何制作变量等级?这个术语是什么意思?我被告知为了在不同的类中使用String fullname,我需要使变量类级别并添加一个getter方法?任何人都可以解释这个概念意味着什么以及如何正确完成?下面列出了相关课程的代码。
public class SaxHandler extends DefaultHandler {
private String artifactIdTag = "close";
private String versionTag = "close";
private String fullname;
public String getFullname() {
return fullname;
}
private boolean inDependency=false;
private boolean inProperties= false;
public void startElement(String uri, String localName,
String qName, Attributes attributes)
throws SAXException {
if (qName.equalsIgnoreCase("properties")) {
inProperties = true;
}
if (qName.equalsIgnoreCase("artifactId")) {
artifactIdTag = "open";
}
if (qName.equalsIgnoreCase("version")) {
versionTag = "open";
}
if (qName.equalsIgnoreCase("dependency")) {
inDependency=true;
}
if (inProperties) {
System.out.println("startElement property");
}
}
private String artifact=null;
private String version=null;
public void characters(char ch[], int start, int length)
throws SAXException {
if (inProperties) {
artifact = new String(ch, start, length);
System.out.println("property characters: "+artifact );
}
if (artifactIdTag.equals("open")) {
artifact = new String(ch, start, length);
version=null;
artifact = artifact.replace("-${org.springframework.version}", "");
System.out.print("artifactId: " + artifact);
}
if (versionTag.equals("open")) {
version = new String(ch, start, length) + ".jar";
version = version.replace("-${org.springframework.version}", "");
String fullname=artifact +"-" +version;
if (inDependency && !(artifact == null || version == null)){
fullname = fullname.replace("-${org.springframework.version}", "");
fullname = fullname.replace("-${spring.security.version}", "");
System.out.printf("%-15s %n", fullname);
FileNameStorage.add(fullname);
}
}
}
public void endElement(String uri, String localName,
String qName) throws SAXException {
if (qName.equalsIgnoreCase("artifactid")) {
artifactIdTag = "close";
}
if (qName.equalsIgnoreCase("version")) {
versionTag = "close";
}
if (qName.equalsIgnoreCase("dependency")) {
inDependency=false;
}
if (qName.equalsIgnoreCase("properties")) {
inProperties = false;
}
}
}
答案 0 :(得分:3)
变量是类级别,因为它在类的范围内。但是,它有私有修饰符,因此没有其他类可以访问它。
此方法是您希望为您的字段提供另一个类访问权限的方法:
public class SaxHandler extends DefaultHandler {
...
private String fullname;
public String getFullname()
{
return fullname;
}
...
}
这个概念是封装。您希望限制类的内部工作,以便它不会被类外的事物破坏。因此,您提供了一个getter方法来返回对值的值的引用,以便它不能从外部修改。
答案 1 :(得分:0)
班级可能意味着两件事之一:
两者之间的区别在于您是否使用静态修改器。如果使用它的类变量,如果不是它的成员变量。您将在getter方法上使用类似的修饰符来指示是否需要该类的实例来访问该变量。