用函數作為參數定義函數 (Defining a function with a function as an argument)


問題描述

用函數作為參數定義函數 (Defining a function with a function as an argument)

I am currently trying to define a function of type ('a ‑> 'a) ‑> 'a ‑> 'a which takes a function of type 'a ‑> 'a and an argument of type 'a and calls the function twice on the argument. I'm relatively new to OCaml but I do know how to define a function, but I had no luck with trial and error or Google trying to get a function to take a function as an argument and then apply that function twice.

Any tips or pointers would be greatly appreciated, thanks in advance.

edit: Thanks to Jeffrey below, my problem is now solved.

let f4 g a = g (g a );;

val f4 : ('a ‑> 'a) ‑> 'a ‑> 'a = 


參考解法

方法 1:

OCaml infers types, so if you use an argument as a function, it infers that it's a function. Here's an example:

# let f g = g 8 + g 10;;
val f : (int ‑> int) ‑> int = <fun>
# (~‑);;
‑ : int ‑> int = <fun>
# f (~‑);;
‑ : int = ‑18

To understand the example, note that (~‑) is the ordinary integer negation operator.

Update: A hint for your more complicated problem. You need to test the value of n. Maybe an if statement would work? Second hint: if you use recursion, you don't need to use a loop. If you want to use a loop, don't use recursion. (Personally I'd suggest using recursion, it's like playing scales while learning piano.)

(by BizzleJeffrey Scofield)

參考文件

  1. Defining a function with a function as an argument (CC BY‑SA 3.0/4.0)

#functional-programming #ocaml #function






相關問題

有沒有辦法在 C 中進行柯里化? (Is there a way to do currying in C?)

Scala 的產量是多少? (What is Scala's yield?)

功能性 javascript 和網絡瀏覽器 javascript 版本 (Functional javascript and web browser javascript versions)

從元組列表中獲取唯一路徑 (Getting Unique Paths from list of tuple)

用函數作為參數定義函數 (Defining a function with a function as an argument)

如何使用函數 VB.NET 插入數據庫? (How to use Function VB.NET Insert To Database?)

Python中列表的模式匹配 (Pattern matching of lists in Python)

如何在haskell中顯示派生樹? (how can i show a derivation tree in haskell?)

編寫一個可任意調用次數的 curried javascript 函數,該函數在最後一次函數調用時返回一個值 (Writing a curried javascript function that can be called an arbitrary number of times that returns a value on the very last function call)

我應該總是給我的函數一個返回值嗎? (Should I always give a return value to my function?)

如何在 JavaScript 中實現動態回調參數 (How can I achieve dynamic callback arguments in JavaScript)

Haskell 是否有一個函數可以創建將函數應用於列表的每個變體 (Haskell Is there a function for creating every variation of applying a function to a list)







留言討論