Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of JQian

JQian

JQian has asked 0 questions and find answers to 2 problems.

Stats

22
EtPoint
2
Vote count
0
questions
2
answers

About

// me.scala class Me private { val name = "JQian"

  val website = ""


  private[this] val langueges_ = Array(
    "Java", 
    "C/C++",
    "Python",
    "Php",
    "SQL"
    "VHDL/Verilog HDL",
    "Scala-some",
    "Matlab/Octave",
    "Go-some")
  def langueges = langueges_.toList

  private[this] val interests_ = Array(
    "Memory System"
    "Java VM",
    "Hadoop",
    "Big Data",
    "Computer Architecture"
    "New Tech.")
  def interests = interests_.toList
}

object Me {
  private val me: Me = new Me
  def get() = me
}