gpt4 book ai didi

Java:类型转换问题

转载 作者:行者123 更新时间:2023-12-01 06:29:03 25 4
gpt4 key购买 nike

有没有办法在一行中完成此操作:

    TextView tv = (TextView) findViewById(R.id.lbSightName);
tv.setText("Some Text");

我想取消声明中间电视,如下所示:

(TextView) findViewById(R.id.lbSightName).setText("Some Text");

不可能吗?

最佳答案

可以,但这不是最佳实践

((TextView) findViewById(R.id.lbSightName)).setText("Some Text");
TextView.class.cast(findViewById(R.id.lbSightName).setText("Some Text");

关于Java:类型转换问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5381030/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com