简体   繁体   中英

how to write a class take a function as parameters in scala

I have a function, how to make this function as a parameter for ServicesImpl class?

def blacklist: List[String] = {
    ***
  }
class ServicesImpl(){}

This compiles.

class ServicesImpl(ss :List[String])

def blacklist: List[String] = List("")
new ServicesImpl(blacklist)

Maybe you want this

class ServicesImpl(foo: => List[String]) {}

def blacklist: List[String] = { }

val impl = new ServicesImpl(blacklist)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM