我是靠谱客的博主 整齐咖啡豆,最近开发中收集的这篇文章主要介绍java定义变量str_java – 在if / else构造中声明变量,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

我在CodingBat.com(extraFront)上解决了一个基本的Java字符串问题.

任务是给定一个任意长度的字符串,返回重复三次的两个第一个字符.第一个例子是我最终直观地做的事情:

public String extraFront(String str) {

if (str.length() <= 2){

String front = str;

}else{

String front = str.substring(0,2);

}

return front+front+front;

}

哪个给我一个错误,前面无法解决.我猜我需要在循环外定义变量,所以我将代码更改为以下代码,它可以正常工作:

public String extraFront(String str) {

String front;

if (str.length() <= 2){

front = str;

}else{

front = str.substring(0,2);

}

return front+front+front;

}

令我困惑的是为什么这应该有所作为,因为无论如何变量将被宣布,不是吗?这是CodingBat如何处理代码的特性,还是这实际上是一个错误?如果是,为什么这个错误的代码到底是什么?如果它不是不正确的,它是不好的风格?

解决方法:

What puzzles me is why this should make a difference, as the variable is going to declared anyway, will it not?

这是一个范围问题.变量仅在声明它的块中可见.这与CodingBat无关 – 它是Java语言的一部分.从section 6.3 of the JLS开始:

The scope of a declaration is the region of the program within which the entity declared by the declaration can be referred to using a simple name, provided it is visible (§6.4.1).

The scope of a local variable declaration in a block (§14.4) is the rest of the block in which the declaration appears, starting with its own initializer and including any further declarators to the right in the local variable declaration statement.

我还恳请您了解conditional operator,它可以在以下情况下提供帮助:

String front = str.length() <= 2 ? str : str.substring(0, 2);

标签:java,variables,declaration

来源: https://codeday.me/bug/20190901/1780062.html

最后

以上就是整齐咖啡豆为你收集整理的java定义变量str_java – 在if / else构造中声明变量的全部内容,希望文章能够帮你解决java定义变量str_java – 在if / else构造中声明变量所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(97)

评论列表共有 0 条评论

立即
投稿
返回
顶部