⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mandel.scala

📁 resetful样式的ws样例,一种面向资源的webservices服务
💻 SCALA
字号:
package com.sun.jersey.samples.mandelobject Mandel {    def iter(c: Complex, limit: int) = {        def _iter(z: Complex, limit: int): int = {            if (limit == 0 || z.modSquared >= 4)                limit            else                _iter(z * z + c, limit - 1);        }	limit - _iter(c, limit)    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -