- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试填充一个对象 Pos邮政类别:
private int degree, minute, tenth;
private Pos pos;
private int d;
private int m;
private int t;
public Pos(int d, int m, int t){
this.d = degree;
this.m = minute;
this.t = tenth;
}
@Override
public String toString(){
return (this.degree + " " + this.minute + "." + this.tenth);
}
这是我打印对象的类(它很多,但我用它来检查布局:
In in;
String fileName = "charts.txt";
int aantalKaarten;
int kolommen;
String[][] tabel;
int n1,n2,n3,s1,s2,s3,w1,w2,w3,e1,e2,e3;
String color;
String edition;
String scale;
String title;
in = new In(fileName);
aantalKaarten = in.readInt()+1;
for(int i = 0, kaart = 0;i < aantalKaarten;i++, kaart++){
try {
n1 = in.readInt();
n2 = in.readInt();
n3 = in.readInt();
System.out.println("Noordelijke lengtegraad: " + n1 + ", " + n2 + ", " + n3);
s1 = in.readInt();
s2 = in.readInt();
s3 = in.readInt();
System.out.println("Zuidelijke lengtegraad: " + s1 + ", " + s2 + ", " + s3);
w1 = in.readInt();
w2 = in.readInt();
w3 = in.readInt();
System.out.println("westelijke breedtegraad: " + w1 + ", " + w2 + ", " + w3);
e1 = in.readInt();
e2 = in.readInt();
e3 = in.readInt();
System.out.println("oostelijke breedtegraad: " + e1 + ", " + e2 + ", " + e3);
color = in.readString();
System.out.println("De kleur van de kaart: " + color);
edition = in.readString();
System.out.println("Editie: " + edition);
scale = in.readString();
System.out.println("Schaal: " + scale);
title = in.readLine();
System.out.println("Kaart: " + title);
System.out.println("");
Pos north = new Pos(n1,n2,3);
Pos south = new Pos(s1,s2,s3);
Pos west = new Pos(w1,w2,w3);
Pos east = new Pos(e1,e2,e3);
Chart[] kaartenArray = new Chart[aantalKaarten];
Chart charts = new Chart(north, south, west, east, color, scale, edition, title);
kaartenArray[kaart] = charts;
String string1;
string1 = kaartenArray[kaart].toString();
System.out.println("string1: " +string1);
System.out.println(kaart);
System.out.println("");
}
/*catch(NoSuchElementException eNSEE){
System.out.println("No such element exception: " + eNSEE);
}*/
catch(StackOverflowError eSOE){
System.out.println("StackOverflowError: " + eSOE);
}
catch(NullPointerException eNPE){
System.out.println("NullpointerException" + eNPE);
}
}
in.close();
}
}
这是类图表中的构造函数:
private String title;//Titel van de kaart.
private String colorString;//kleur waarin het kader van de kaart moet worden getekend door de klasse
//DrawCartotheek (B,G) voor respectievelijk blauw of groen
private String scale;//Schaal van de kaart: Bij voorbeeld: 1:50000
private String edition;///Het jaar van uitgifte van de kaart. Bij voorbeeld: ed:2011/2012
private Pos north;//De noordelijkste breedtegraad van de kaart
private Pos south;//De zuidelijkste breedtegraad van de kaart
private Pos west;//De westelijkste lengtegraad van de kaart
private Pos east;//De oostelijkste lengtegraad van de kaart
private Chart Chart;
public Chart(Pos north, Pos south, Pos west, Pos east, String color, String scale, String edition, String title){
//Constructor. Maakt een object van het type Chart wijst de parameters
//toe aan de respectievelijke attributen.
this.north = north;
this.south = south;
this.west = west;
this.east = east;
this.colorString = color;
this.scale = scale;
this.edition = edition;
this.title = title;
}
这是我正在处理的文本文件:
20
51 53 00 3 49 00 51 49 70 3 59 00 B ed:2011/2012 1:50.000 ANWB Z 5
51 53 00 3 59 00 51 49 70 4 09 15 B ed:2011/2012 1:50.000 ANWB Z 6
51 49 50 3 28 90 51 42 10 3 49 00 B ed:2011/2012 1:50.000 ANWB Z 7-8
51 49 50 3 49 00 51 42 10 4 09 00 B ed:2011/2012 1:50.000 ANWB Z 9-10
51 41 80 3 19 20 51 34 00 3 39 60 B ed:2011/2012 1:50.000 ANWB Z 11-12
51 42 20 3 39 40 51 34 40 3 59 70 B ed:2011/2012 1:50.000 ANWB Z 13-14
51 42 40 3 59 70 51 34 60 4 19 80 B ed:2011/2012 1:50.000 ANWB Z 15-16
51 42 60 4 19 60 51 34 80 4 29 80 B ed:2011/2012 1:50.000 ANWB Z 17
51 34 20 3 19 80 51 26 80 3 39 90 B ed:2011/2012 1:50.000 ANWB Z 19-20
51 34 60 3 39 80 51 26 80 4 00 00 B ed:2011/2012 1:50.000 ANWB Z 21-22
51 34 60 3 59 70 51 27 20 4 20 00 B ed:2011/2012 1:50.000 ANWB Z 23-24
51 26 70 3 20 00 51 19 00 3 40 20 B ed:2011/2012 1:50.000 ANWB Z 25-26
51 27 00 3 40 00 51 19 40 4 00 00 B ed:2011/2012 1:50.000 ANWB Z 27-28
51 27 15 4 00 00 51 19 60 4 20 20 B ed:2011/2012 1:50.000 ANWB Z 29-30
51 27 60 2 28 60 51 00 00 2 58 40 G ed:2012 1:100.000 Hydro 1801.2
51 32 00 2 51 60 51 13 70 3 36 00 G ed:2012 1:100.000 Hydro 1801.3
51 30 50 3 22 50 51 20 50 3 44 30 G ed:2012 1:50.000 Hydro 1801.4
51 48 60 3 00 00 51 30 40 3 40 00 G ed:2012 1:100.000 Hydro 1801.5
52 00 06 3 23 00 51 42 40 4 07 20 G ed:2012 1:100.000 Hydro 1801.6
52 15 60 3 46 40 51 57 60 4 29 60 G ed:2012 1:100.000 Hydro 1801.7
这是我运行类时代码的结果(只有前两个,因为否则太长了:
run:
Noordelijke lengtegraad: 51, 53, 0
Zuidelijke lengtegraad: 3, 49, 0
westelijke breedtegraad: 51, 49, 70
oostelijke breedtegraad: 3, 59, 0
De kleur van de kaart: B
Editie: ed:2011/2012
Schaal: 1:50.000
Kaart: ANWB Z 5
Chart: ANWB Z 5, ed:2011/2012, 1:50.000 north: 0 0.0 south: 0 0.0 west: 0 0.0 east: 0 0.0
Noordelijke lengtegraad: 51, 53, 0
Zuidelijke lengtegraad: 3, 59, 0
westelijke breedtegraad: 51, 49, 70
oostelijke breedtegraad: 4, 9, 15
De kleur van de kaart: B
Editie: ed:2011/2012
Schaal: 1:50.000
Kaart: ANWB Z 6
Chart: ANWB Z 6, ed:2011/2012, 1:50.000 north: 0 0.0 south: 0 0.0 west: 0 0.0 east: 0 0.0
正如你所看到的,pos 对象的结果都是 0。它输出这种格式:度分.第十,正如你在 Pos 类中看到的那样。例如北应该是 51 53.0 等等。
真的希望有人能帮助我找出我做错了什么。提前致谢。
最佳答案
如果我正确理解了这个问题,那么:
public Pos(int d, int m, int t){
this.d = degree;
this.m = minute;
this.t = tenth;
}
应该是:
public Pos(int d, int m, int t){
this.d = d;
this.m = m;
this.t = t;
}
toString 应该是:
@Override
public String toString(){
return (this.d + " " + this.m + "." + this.t);
}
关于java - 对象未填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22289986/
我的一位教授给了我们一些考试练习题,其中一个问题类似于下面(伪代码): a.setColor(blue); b.setColor(red); a = b; b.setColor(purple); b
我似乎经常使用这个测试 if( object && object !== "null" && object !== "undefined" ){ doSomething(); } 在对象上,我
C# Object/object 是值类型还是引用类型? 我检查过它们可以保留引用,但是这个引用不能用于更改对象。 using System; class MyClass { public s
我在通过 AJAX 发送 json 时遇到问题。 var data = [{"name": "Will", "surname": "Smith", "age": "40"},{"name": "Wil
当我尝试访问我的 View 中的对象 {{result}} 时(我从 Express js 服务器发送该对象),它只显示 [object][object]有谁知道如何获取 JSON 格式的值吗? 这是
我有不同类型的数据(可能是字符串、整数......)。这是一个简单的例子: public static void main(String[] args) { before("one"); }
嗨,我是 json 和 javascript 的新手。 我在这个网站找到了使用json数据作为表格的方法。 我很好奇为什么当我尝试使用 json 数据作为表时,我得到 [Object,Object]
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我听别人说 null == object 比 object == null check 例如: void m1(Object obj ) { if(null == obj) // Is thi
Match 对象 提供了对正则表达式匹配的只读属性的访问。 说明 Match 对象只能通过 RegExp 对象的 Execute 方法来创建,该方法实际上返回了 Match 对象的集合。所有的
Class 对象 使用 Class 语句创建的对象。提供了对类的各种事件的访问。 说明 不允许显式地将一个变量声明为 Class 类型。在 VBScript 的上下文中,“类对象”一词指的是用
Folder 对象 提供对文件夹所有属性的访问。 说明 以下代码举例说明如何获得 Folder 对象并查看它的属性: Function ShowDateCreated(f
File 对象 提供对文件的所有属性的访问。 说明 以下代码举例说明如何获得一个 File 对象并查看它的属性: Function ShowDateCreated(fil
Drive 对象 提供对磁盘驱动器或网络共享的属性的访问。 说明 以下代码举例说明如何使用 Drive 对象访问驱动器的属性: Function ShowFreeSpac
FileSystemObject 对象 提供对计算机文件系统的访问。 说明 以下代码举例说明如何使用 FileSystemObject 对象返回一个 TextStream 对象,此对象可以被读
我是 javascript OOP 的新手,我认为这是一个相对基本的问题,但我无法通过搜索网络找到任何帮助。我是否遗漏了什么,或者我只是以错误的方式解决了这个问题? 这是我的示例代码: functio
我可以很容易地创造出很多不同的对象。例如像这样: var myObject = { myFunction: function () { return ""; } };
function Person(fname, lname) { this.fname = fname, this.lname = lname, this.getName = function()
任何人都可以向我解释为什么下面的代码给出 (object, Object) 吗? (console.log(dope) 给出了它应该的内容,但在 JSON.stringify 和 JSON.parse
我正在尝试完成散点图 exercise来自免费代码营。然而,我现在只自己学习了 d3 几个小时,在遵循 lynda.com 的教程后,我一直在尝试确定如何在工具提示中显示特定数据。 This code
我是一名优秀的程序员,十分优秀!