码迷,mamicode.com
首页 >  
搜索关键字:array_to_string    ( 419个结果
scala中隐式转换之隐式值和隐式视图
/** * Created by root * Description : 隐式值和隐式视图 */ object ImplicitTest { def main(args: Array[String]): Unit = { // 隐式值 implicit val str = "hello" def ... ...
分类:其他好文   时间:2017-12-07 21:13:50    阅读次数:113
scala中list集合的操作与总结
/** * Created by root * Description : List */ object ListTest { def main(args: Array[String]): Unit = { println() } val a = List(1,2,3,4) for (i x % 2... ...
分类:其他好文   时间:2017-12-06 21:54:44    阅读次数:169
JavaScript基础(一)
Javascipt的本地对象,内置对象和宿主对象 本地对象:Object、Function、Array、String、Boolean、Number、Date、RegExp、Error、EvalError、RangeError、ReferenceError、SyntaxError、TypeError、 ...
分类:编程语言   时间:2017-11-22 00:01:23    阅读次数:287
Spark记录-Scala记录(基础程序例子)
import scala.util.control._ object learnning { def main(args:Array[String]):Unit={ val n:Int=10 println("第"+n+"个月兔子总数为"+fun(n)) val n1:Int=1 val n2:In... ...
分类:其他好文   时间:2017-11-21 16:58:19    阅读次数:149
scala之split()函数用法
split()函数: scala> "a-b-c-d-e".split("-",3)res0: Array[String] = Array(a, b, c-d-e)scala> "a-b-c-d-e".split("-",4)res1: Array[String] = Array(a, b, c, ...
分类:其他好文   时间:2017-11-18 11:27:21    阅读次数:194
求职之C++小知识点整理
1.顺序容器 1.顺序容器:vector,deque,list,forward_list,array,string。其中除list和forward_list外,其它都支持快速随机访问。 deque a = { 1, 2, 3, 4, 5, 6 }; cout << a[4] << endl ; 2. ...
分类:编程语言   时间:2017-11-12 11:11:02    阅读次数:153
Array And String(数组和字符串)
1.实现一个算法,确定一个字符串的所有字符是否全都不同。假使不允许使用额外的数据结构,又该怎么处理? public class UniqueChars { public static void main(String[] args) { // TODO Auto-generated method s ...
分类:编程语言   时间:2017-11-10 18:38:49    阅读次数:193
Scala实现:已知三点坐标,求最短距离(如果在垂足不在线段内,最短距离为到其中一点的直线距离)
/** * 已知三点坐标,求其中一点到另两点的垂线距离 * (如果在垂足不在线段内,最短距离为到其中一点的直线距离) * Created by wzq on 17-11-2. */object Point2lineDistance { def main(args: Array[String]) { ...
分类:其他好文   时间:2017-11-02 19:12:17    阅读次数:265
Palindrome Permutation II
Given a string s, return all the palindromic permutations (without duplicates) of it. Return an empty list if no palindromic permutation could be form ...
分类:其他好文   时间:2017-10-22 10:54:56    阅读次数:166
delphi----Tstringlist,将有符号的数据变成数组"aaa,bbb,ccc"---->list[0]=aaa,list[1]=bbb
procedure TFrm_030101_dimsAdd.AddSJ;var dims:IJSONDocument; List: TStringList; i:integer; arr:array of string; //定义动态string型数组begin try List := TStrin ...
分类:编程语言   时间:2017-10-21 12:17:18    阅读次数:225
419条   上一页 1 ... 15 16 17 18 19 ... 42 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!