腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
工具
TVP
最新优惠活动
文章/答案/技术大牛
搜索
搜索
关闭
发布
精选内容/技术社群/优惠产品,
尽在小程序
立即前往
文章
问答
(9999+)
视频
沙龙
4
回答
ToString
方法
、
、
特定表单有一个重写
ToString
方法
,用于编写有意义的字符串。但是,当我调用类Form的
ToString
或object时,会得到以下输出:你知道为什么我不能得到自定义字符串,即使我正在覆盖它/// <summary> /// </summary>
浏览 2
提问于2011-10-04
得票数 2
2
回答
toString
方法
我想在Item类中添加一个
toString
方法
,用于返回其中项目的标题。 我需要确保DVD类中的
toString
方法
调用Item中的
toString
方法
,以便它可以返回同时包含标题和导演的字符串。
浏览 1
提问于2011-04-02
得票数 0
1
回答
toString
()错误,无法解析
方法
toString
()
、
、
、
下面是我到目前为止使用过的if语句: if(part.getId().
toString
().indexOf(searchText) > -1) { return true;} 当我尝试将此id转换为字符串时,显示的错误为Cannot resolve method
toString
() 下面是我使用的零件模型中的get
方法
: public int getId() { return id; } 不确定我做错了什么吗
浏览 423
提问于2021-07-28
得票数 3
回答已采纳
5
回答
toString
错误,无法解析
方法
toString
()
、
我正在尝试将双精度值转换为字符串以进行显示,但收到一个错误,显示"Cannot resolve method "
toString
()“ double billTotal = Double.valueOf(billTotalEditText.getText().
toString
tipTotal = billTotal * tipPercentage; //di
浏览 1
提问于2019-05-19
得票数 0
1
回答
我的
toString
()
方法
没有覆盖Calendar
toString
()
方法
、
、
、
Largest int: " + max(integerList)); Arrays.sort(a); } public String
toString
这个类扩展了GregorianCalendar类,这意味着我可以访问正在试图覆盖的日历
to
浏览 3
提问于2011-11-08
得票数 2
回答已采纳
3
回答
多个
toString
方法
?
、
此链接中解释了该问题 我已经用
toString
方法
解决了这个问题。之前,出于调试目的,我使用
toString
()
方法
作为字符串构建器。因为我用它来生成逗号分隔值,所以我不能像以前那样调试它。
浏览 0
提问于2013-09-12
得票数 2
2
回答
洞察
toString
方法
getClass().getName+"@"+Integer.toHexString(hashCode()) 这就是在Object类中实现
toString
()
方法
的方式,但我不能理解它是如何调用hashCode
浏览 2
提问于2017-03-28
得票数 0
7
回答
覆盖
toString
方法
、
我使用.
toString
返回对象的字符串表示形式,即将产生e2e4。@Override String s = ""; intMove move = new Move(rank, file, newRank, newFile)
浏览 8
提问于2012-07-25
得票数 1
回答已采纳
1
回答
String
toString
方法
、
这是具有
toString
方法
的类 final String address; this.phoneNr = phoneNr; public String
toString
String.format("%-10s, %-20s, %-10s", name, address, ph
浏览 21
提问于2020-05-17
得票数 1
回答已采纳
2
回答
ArrayList
toString
()
方法
、
、
、
、
e.printStackTrace(); System.out.println(my_lists.get(i).
toString
25e5d007kruskal.LinkedList@19509443知道为什么我的
toString
()
方法
不能工作吗?我假设我需要在我的LinkedList类中使用这个
方法</
浏览 4
提问于2014-03-25
得票数 1
3
回答
递归
toString
方法
、
我目前的任务是创建一个LinkedList数据结构,我已经创建了它以及其他
方法
,它工作得很好。我的最后一个问题是创建一个
toString
方法
。这应该是: “返回列表的字符串表示形式的
toString
方法
。用逗号分隔每一项,并用大括号将各项括起来,例如{1,4,7,5}。公共
toString
方法
必须调用私有的递归
方法
才能生成逗号分隔的项列表。(不过,您可以在公共
方法
中添加大括号。)”我有我的公共
toString
浏览 3
提问于2013-06-03
得票数 0
回答已采纳
1
回答
无
toString
方法
value.
toString
) 在js中有没有什么东西没有定义
toString
(除了undefined和null)?
浏览 1
提问于2013-03-20
得票数 1
回答已采纳
3
回答
方法
重载
toString
()
嗨,我只是想知道在同一个类中是否可能有多个
toString
()
方法
。两个不同的
toString
()
方法
打印不同的东西。例: return String.format("(%.1f%+.1fi)%n", real, imaginary); return String.format("z=%.3f(cos(%.3f)+isin(%.3f))
浏览 5
提问于2015-01-18
得票数 1
回答已采纳
2
回答
重写
toString
方法
?
我生成了
toString
()。@Override{ return "Auto [exampleOne=" + exampleOne + ", exampleTwo=" + exampleTwogetexampleOne() + ", getexampleTwo()=" + getexampleTwo() + ", getexampleThree()=" + getexampleThree() + ",
toSt
浏览 4
提问于2019-10-05
得票数 0
回答已采纳
5
回答
方法
toString
()问题
、
我必须在某个地方使用overriden
方法
toString
(),因此我将其放在类菜单中以显示总菜单price.But,我无法在main()中调用该
方法
。我该怎么做?} @Override
浏览 10
提问于2013-11-17
得票数 1
回答已采纳
1
回答
JSONObject
toString
方法
、
、
假设JSONObject上的java
toString
会保持您将键放入对象的顺序,这样做安全吗?
浏览 2
提问于2018-08-18
得票数 0
1
回答
Java
toString
()
方法
、
、
public String
toString
() String str; str = "The test scores in descending order
浏览 0
提问于2014-11-25
得票数 3
回答已采纳
2
回答
方法
名
ToString
()
、
GetCached(BLCustomer.GetAll, BLCustomer.GetAll.
ToString
());其他情况下,我希望从
方法
名获得字符串 "GetAll" (不是客户的名称,而是
方法
的名称)。我想用这样的东西而不是以避免
方法
浏览 2
提问于2011-07-13
得票数 3
回答已采纳
3
回答
Javascript
toString
()
方法
、
、
为什么hol.
toString
()很有用或有帮助?这不就等同于编写/输出hol吗toDateString() toTimeString()
浏览 1
提问于2012-07-08
得票数 1
3
回答
更改
toString
方法
、
在重写
toString
()
方法
时,我遇到了一个问题;
toString
()
方法
不会返回字符串值,也没有收到运行时错误或编译错误。最后,我将返回值更改为void,将
方法
名更改为output。所以我没有返回字符串值,而是使用了system.outpublic String
toString
() return String.format(
浏览 3
提问于2011-11-04
得票数 0
点击加载更多
扫码
添加站长 进交流群
领取专属
10元无门槛券
手把手带您无忧上云
相关
资讯
1.toString 报错,为何不输出 “1”?
Object.prototype.toString.call判断数组类型准确吗?
String.valueof和Integer.toString的不同-JAVA成长之路
头条三面:toString()、String.valueOf、(String) xx,都有啥区别?
Object
热门
标签
更多标签
云服务器
ICP备案
对象存储
实时音视频
即时通信 IM
活动推荐
运营活动
广告
关闭
领券