1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | object A { def main(args:Array[String]):Unit= { val b = new B(); b( 0 )= "scala" ; print(b( 0 )); // scala 索引器的实现 } } class B { private val content:Array[String] = Array( "hello" , "world" ); //Array[String]("hello","world"); 或者 Array.apply[String]("hello","world"); Array.apply("hello","world"); def apply(index:Int):String = { return this .content(index); //return this.content.apply(index); } def update(index:Int,item:String):Unit = { this .content(index)=item; //this.content.update(index,item); } } class R(n:Int,d:Int ) { private val g = gcd(n,d); val number = n/g; val denom = d/g; def this (n:Int)= this (n, 1 ); private def gcd(a:Int,b:Int):Int = if (b== 0 ) a else gcd(b,a%b); //recursive method gcd needs result type override def toString() = if ( this .denom== 1 ) this .number.toString() else this .number+ "/" + this .denom; def +(that:R)= new R( this .number*that.denom+that.number* this .denom*that.number, this .denom*that.denom); def *(that:R)= new R( this .number*that.number, this .denom*that.denom); def /(that:R)= new R( this .number*that.denom, this .denom*that.number); } object R { def apply(n:Int,d:Int)= new R(n,d); def apply(n:Int)= new R(n); } object A { def main(args:Array[String]):Unit= { print(R( 2 , 3 )/R( 1 , 3 )); } } |
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】博客园社区专享云产品让利特惠,阿里云新客6.5折上折
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 开发中对象命名的一点思考
· .NET Core内存结构体系(Windows环境)底层原理浅谈
· C# 深度学习:对抗生成网络(GAN)训练头像生成模型
· .NET 适配 HarmonyOS 进展
· .NET 进程 stackoverflow异常后,还可以接收 TCP 连接请求吗?
· 本地部署 DeepSeek:小白也能轻松搞定!
· 如何给本地部署的DeepSeek投喂数据,让他更懂你
· 在缓慢中沉淀,在挑战中重生!2024个人总结!
· 大人,时代变了! 赶快把自有业务的本地AI“模型”训练起来!
· 从 Windows Forms 到微服务的经验教训