我开始在Java中使用谷歌的App。我见过,但我不理解项目包的命名。
这将是一本留言簿,这就是为什么这个名字是留言簿,我明白这部分。但在那之后我看到了包裹的名字。1)Is that something you import into the project, or is is something you create.
我在项目中见过很多这样的东西,比如com.xxx.xxx。2)How do you name this type of thing or is this an import.
我看过,他们把命名提升到了一个全新的水平。项目和包的名称都是de.vogella.gae.java.t
在(默认包)中,我有一个名为"Bird“的类,它有一个名为"dialog”的方法。
我可以在同一个包中创建一个名为Class1的类,如下所示:
public class Class1
{
public static void main(String[] args)
{
Bird b = new Bird("Alexander",true,5);
b.dialog("tweet!");
}
}
这实际上是有效的,并且我实际上可以在控制台中看到tweet!。
我的问题是:如果Class1位于包
Java中异常类的名称必须有Exception后缀,也可以描述其抛出情况。现在,我在Android中的主外部存储中有两个异常类
/**
* Thrown when Application tries to access primary external storage and it is not
* available for write.This only depends on status of storage, for example media
* not mounted,bad mounted, or ... .
*/
public class PrimaryExternal
作为Java的初学者,我想问一个问题
在A.java中(例如Employee.java)
import java.io.*;
public class Employee{
public String name;
private double salary;
public Employee (String empName){
name = empName;
}
public void setSalary(double empSal){
salary = empSal;
}
// 打印信息
public void prin