ruby Ruby?やってます,(`·ω·')キリッという为に押さえときたいテクニックref:http://qiita.com/kitaro_tn/items/6372e3

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby Ruby?やってます,(`·ω·')キリッという为に押さえときたいテクニックref:http://qiita.com/kitaro_tn/items/6372e3相关的知识,希望对你有一定的参考价值。

class HttpRest

  def get(url, params, opts)
  end

  def post(url, params, opts)
  end

  def put(url, params, opts)
  end

  def delete(url, params, opts)
  end

end

class Client

  attr_reader :response

  def initialize(action, url, params, opts)
    @response = HttpRest.new.send(action.to_sym, url, params, opts)
  end

end
# coding: utf-8

class Calc

  attr_reader :num

  def initialize(num)
    @num = num
  end

  def plus
    self.tap { @num += 1 }
  end

  def minus
    self.tap { @num -= 1 }
  end

end

calc = Calc.new(1)
calc.plus.plus.plus.minus.plus.minus
p calc.num
# coding: utf-8

class Calc

  attr_reader :num

  def initialize(num)
    @num = num
  end

  def plus
    @num += 1
    self
  end

  def minus
    @num -= 1
    self
  end

end

calc = Calc.new(1)
calc.plus.plus.plus.minus.plus.minus
p calc.num # 3
def hoge(name)
  return "No name" if name.nil?
  @name = name
end
def calc(num)
  num ||= 0
  num += 1
end
Proc.new { |x, y| }.call(1) # 1
lambda { |x, y| }.call(1) # ArgumentError
# &blockを引数として渡すと、メソッド内部でProcオブジェクトを呼び出すことが出来る
def agree(&block)
  printf "Hello,"
  block.call if block_given?
end

# yieldを使うことで、上記を省略した書き方ができる
def agree2
  printf "Hey!,"
  yield if block_given? # blockが与えられたかを判定するので、必ず入れておいたほうがいい
end

agree { p "Tom" }
agree2 { p "Sam" }

# Hello,"Tom"
# Hey!,"Sam"
@num = 0
counter = Proc.new { @num += 1 }
counter.call # 1
counter.call # 2
class Sample

  # クラスメソッド
  def self.hoge    
  end

  def initialize
    @foo = "foo" # インスタンス変数
  end

  # インスタンスメソッド
  def foo
    @foo 
  end

end

以上是关于ruby Ruby?やってます,(`·ω·')キリッという为に押さえときたいテクニックref:http://qiita.com/kitaro_tn/items/6372e3的主要内容,如果未能解决你的问题,请参考以下文章

csharp コードの秘诀は吉斯特に移行します。今まではEvernote的に全てまとめていたけれど,吉斯特だとコードのシンタックスハイライトが效いて便利なので,コード部分に关しては要点を使ってみたいと

ruby つくって学ぶプログラミング言语Ruby中的方案

ruby つくって学ぶプログラミング言语Ruby中的方案

ruby つくって学ぶプログラミング言语Ruby中的方案

日語听解2第1回:2月24日

java Androidでstatic finalなインスタンスが复雑な场合,こうやって初期化する