scala 转换为字符串_如何在Scala中将字符串转换为布尔值?

scala 转换为字符串

String in Scala is a sequence of characters. In Scala, the String object is immutable.

Scala中的String是一个字符序列。 在Scala中,String对象是不可变的。

Example:

例:

String("includehelp.com")

A Boolean is a data type in Scala programming language (and another programming also), that is used or Boolean algebra. It has two valid values i.e. true and false.

布尔值是Scala编程语言 (也是另一种编程语言 )中使用的数据类型 ,它是布尔代数。 它具有两个有效值,即truefalse

Example:

例:

var bool : Boolean = true; 

将字符串转换为布尔值 (Convert string to boolean)

The conversion from string to boolean can be done using multiple methods,

从字符串到布尔值的转换可以使用多种方法完成,

  1. Boolean.parseBoolean()

    Boolean.parseBoolean()

  2. Boolean.valueOf()

    Boolean.valueOf()

1) Convert string to boolean using Boolean.parseBoolean()

1)使用Boolean.parseBoolean()将字符串转换为布尔值

Syntax:

句法:

Boolean.parseBoolean(String) : Boolean

Scala程序使用Boolean.parseBoolean()将字符串转换为布尔值 (Scala program to convert String to Boolean using Boolean.parseBoolean())

import java.lang.Boolean
object MyClass {
def main(args: Array[String]) {
// For False values 
println("String to Boolean for false values ")
println(Boolean.parseBoolean("False"))
println(Boolean.parseBoolean("false"))
println(Boolean.parseBoolean("No"))
println(Boolean.parseBoolean("FALSE"))
// For Truth values 
println("String to Boolean for false values ")
println(Boolean.parseBoolean("True"))
println(Boolean.parseBoolean("true"))
println(Boolean.parseBoolean("TRUE"))
}
}

Output:

输出:

String to Boolean for false values 
false
false
false
false
String to Boolean for false values 
true
true
true

2) Convert string to boolean using Boolean.valueOf()

2)使用Boolean.valueOf()将字符串转换为布尔值

Syntax:

句法:

Boolean.valueOf(String) : Boolean

Scala程序使用Boolean.valueOf()将字符串转换为布尔值 (Scala program to convert String to Boolean using Boolean.valueOf())

import java.lang.Boolean
object MyClass {
def main(args: Array[String]) {
// For False values 
println("String to Boolean for false values ")
println(Boolean.valueOf("False"))
println(Boolean.valueOf("false"))
println(Boolean.valueOf("No"))
println(Boolean.valueOf("FALSE"))
// For Truth values 
println("String to Boolean for false values ")
println(Boolean.valueOf("True"))
println(Boolean.valueOf("true"))
println(Boolean.valueOf("TRUE"))
}
}

Output:

输出:

String to Boolean for false values 
false
false
false
false
String to Boolean for false values 
true
true
true

翻译自: https://www.includehelp.com/scala/convert-string-to-boolean-in-scala.aspx

scala 转换为字符串

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/544270.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Java夺命21连问!(附答案)

大家好,我是磊哥。有位朋友工作三年,去面试,给大家整理一下面试题,并附上答案。Mysql索引在什么情况下会失效MySql的存储引擎InnoDB与MyISAM的区别Mysql在项目中的优化场景,慢查询解决等Mysql有什么索引,索…

固有属性与自定义属性

javascript有两个很相近的东西,property与attribute,懒一点的人都翻译成“属性”。 如果专业点,则区别为“属性”与“特性”。我认为叫做固有属性与自定义属性比较好一点。 property是来自于原型链,所有HTML元素,都是H…

weakhashmap_Java WeakHashMap get()方法与示例

weakhashmapWeakHashMap类的get()方法 (WeakHashMap Class get() method) get() method is available in java.util package. get()方法在java.util包中可用。 get() method is used to get the value to which the given key element (key_ele) associated in this map otherw…

SpringCloud Nacos + Ribbon 调用服务的 2 种方法!

作者 | 磊哥来源 | Java中文社群(ID:javacn666)转载请联系授权(微信ID:GG_Stone)在 Nacos 中,服务调用主要是通过 RestTemplate Ribbon 实现的,RestTemplate 是 Spring 提供的 Rest…

转:阅读代码

程序员阅读源码是一种什么心态?源码对编程意义何在?如何才能更好阅读代码?转载于:https://www.cnblogs.com/kira2will/p/4777090.html

strictmath_Java StrictMath rint()方法与示例

strictmathStrictMath类rint()方法 (StrictMath Class rint() method) rint() Method is available in java.lang package. rint()方法在java.lang包中可用。 rint() Method is used to return the double type value and if the value of the given argument after decimal po…

在Linux下查看环境变量

原文地址:http://blog.chinaunix.net/uid-25124785-id-77098.html 有时候在编写makefile的时候,自己都不清楚有些变量是什么,也不清楚如何查看,于是感觉有必要在这里写一篇环境变量查看的博文。 如果你想查看某一个名称的环境变量…

java nextlong_Java Random nextLong()方法与示例

java nextlong随机类nextLong()方法 (Random Class nextLong() method) nextLong() method is available in java.util package. nextLong()方法在java.util包中可用。 nextLong() method is used to generate the next pseudo-random distributed long value from this Random…

SpringCloud Ribbon中的7种负载均衡策略!

作者 | 磊哥来源 | Java中文社群(ID:javacn666)转载请联系授权(微信ID:GG_Stone)负载均衡通器常有两种实现手段,一种是服务端负载均衡器,另一种是客户端负载均衡器,而我们…

window下php5.6-x64-ts可用php_redis.dll文件

5.6 Thread Safe (TS) x64 http://windows.php.net/downloads/pecl/releases/redis/2.2.7/php_redis-2.2.7-5.6-ts-vc11-x64.zip 5.6 Non Thread Safe (NTS) x64 http://windows.php.net/downloads/pecl/releases/redis/2.2.7/php_redis-2.2.7-5.6-nts-vc11-x64.zip 转载于:htt…

java bitset_Java BitSet toString()方法与示例

java bitsetBitSet类的toString()方法 (BitSet Class toString() method) toString() method is available in java.util package. toString()方法在java.util包中可用。 toString() method is used to represent string denotation of this BitSet so the representation woul…

线程池是如何执行的?拒绝策略有哪些?

作者 | 磊哥来源 | Java面试真题解析(ID:aimianshi666)转载请联系授权(微信ID:GG_Stone)聊到线程池就一定会聊到线程池的执行流程,也就是当有一个任务进入线程池之后,线程池是如何执…

浮动元素的均匀分布和两端对齐

当我们使用float来使元素并排显示的时候,可以使用margin来控制元素之间的距离,而在很多版式里(例如产品图片的列表),需要浮动的元素达到两端对齐的效果,如图1所示。 图1 两端对齐的版式 单纯使用float:left…

20 图|Nacos 手摸手教程

Nacos 作为服务注册中心、配置中心,已经非常成熟了,业界的标杆,在讲解 Nacos 的架构原理之前,我先给大家来一篇开胃菜:讲解 Nacos 如何使用。涉及到如下两个话题:用 Nacos 作为注册中心。用 Nacos 作为配置…

c语言宏函数怎么传递宏参数_C语言中的宏参数评估

c语言宏函数怎么传递宏参数We can define a function like Macro, in which we can pass the arguments. When a Macro is called, the Macro body expands or we can say Macro Call replaces with Macro Body. 我们可以定义一个函数,例如Macro,可以在其…

WebBrowser中html元素如何触发winform事件

这个问题来自论坛提问,对dom稍微了解的话还是比较简单的,只要注册一下事件就可以了。 C#代码如下: using System;using System.ComponentModel;using System.Windows.Forms;namespace WindowsApplication5...{  public partial class Form1 : Form  …

为什么Spring需要三级缓存解决循环依赖,而不是二级缓存?

来源:https://www.cnblogs.com/semi-sub/p/13548479.html在使用spring框架的日常开发中,bean之间的循环依赖太频繁了,spring已经帮我们去解决循环依赖问题,对我们开发者来说是无感知的,下面具体分析一下spring是如何解…

第四代编程语言_几代编程语言

第四代编程语言几代编程语言 (Generations of programming language) Programming languages have been developed over the year in a phased manner. Each phase of developed has made the programming language more user-friendly, easier to use and more powerful. Each…

20款华丽的几何形状字体【免费下载】

这里手机的字体使用几何形状设计。流畅简洁的线条,完美的圆形的角度建立一个完整性的设计感。使用几何形状生成出每一个优雅而现代的字母。这些字体可以用于标题和正文。由于他们的设计适合任何干净简约设计,因此很受欢迎。向下滚动并下载这些免费几何字…

MySQL 精选 60 道面试题(含答案)

金三银四到了,给大家整理一些数据库必知必会的面试题。基础相关1、关系型和非关系型数据库的区别?关系型数据库的优点容易理解,因为它采用了关系模型来组织数据。可以保持数据的一致性。数据更新的开销比较小。支持复杂查询(带 wh…