F # - ข้อมูลที่ไม่แน่นอน
ตัวแปรใน F # คือ immutable,ซึ่งหมายความว่าเมื่อตัวแปรถูกผูกไว้กับค่าแล้วจะไม่สามารถเปลี่ยนแปลงได้ ซึ่งจริง ๆ แล้วคอมไพล์เป็นคุณสมบัติอ่านอย่างเดียวคง
ตัวอย่างต่อไปนี้แสดงให้เห็นถึงสิ่งนี้
ตัวอย่าง
let x = 10
let y = 20
let z = x + y
printfn "x: %i" x
printfn "y: %i" y
printfn "z: %i" z
let x = 15
let y = 20
let z = x + y
printfn "x: %i" x
printfn "y: %i" y
printfn "z: %i" z
เมื่อคุณคอมไพล์และรันโปรแกรมจะแสดงข้อความแสดงข้อผิดพลาดต่อไปนี้ -
Duplicate definition of value 'x'
Duplicate definition of value 'Y'
Duplicate definition of value 'Z'
ตัวแปรที่ไม่แน่นอน
บางครั้งคุณต้องเปลี่ยนค่าที่เก็บไว้ในตัวแปร เพื่อระบุว่าอาจมีการเปลี่ยนแปลงในค่าของตัวแปรที่ประกาศและกำหนดในส่วนต่อมาของโปรแกรม F # ให้mutableคำสำคัญ. คุณสามารถประกาศและกำหนดตัวแปรที่เปลี่ยนแปลงได้โดยใช้คีย์เวิร์ดนี้ซึ่งค่าที่คุณจะเปลี่ยนไป
mutable คำสำคัญช่วยให้คุณสามารถประกาศและกำหนดค่าในตัวแปรที่เปลี่ยนแปลงได้
คุณสามารถกำหนดค่าเริ่มต้นให้กับตัวแปรที่เปลี่ยนแปลงได้โดยใช้ letคำสำคัญ. อย่างไรก็ตามในการกำหนดค่าใหม่ที่ตามมาคุณต้องใช้ไฟล์<- ตัวดำเนินการ
ตัวอย่างเช่น,
let mutable x = 10
x <- 15
ตัวอย่างต่อไปนี้จะล้างแนวคิด -
ตัวอย่าง
let mutable x = 10
let y = 20
let mutable z = x + y
printfn "Original Values:"
printfn "x: %i" x
printfn "y: %i" y
printfn "z: %i" z
printfn "Let us change the value of x"
printfn "Value of z will change too."
x <- 15
z <- x + y
printfn "New Values:"
printfn "x: %i" x
printfn "y: %i" y
printfn "z: %i" z
เมื่อคุณคอมไพล์และรันโปรแกรมจะให้ผลลัพธ์ดังต่อไปนี้ -
Original Values:
x: 10
y: 20
z: 30
Let us change the value of x
Value of z will change too.
New Values:
x: 15
y: 20
z: 35
การใช้ข้อมูลที่ไม่แน่นอน
ข้อมูลที่เปลี่ยนแปลงได้มักจำเป็นและใช้ในการประมวลผลข้อมูลโดยเฉพาะอย่างยิ่งกับโครงสร้างข้อมูลบันทึก ตัวอย่างต่อไปนี้แสดงให้เห็นถึงสิ่งนี้ -
open System
type studentData =
{ ID : int;
mutable IsRegistered : bool;
mutable RegisteredText : string; }
let getStudent id =
{ ID = id;
IsRegistered = false;
RegisteredText = null; }
let registerStudents (students : studentData list) =
students |> List.iter(fun st ->
st.IsRegistered <- true
st.RegisteredText <- sprintf "Registered %s" (DateTime.Now.ToString("hh:mm:ss"))
Threading.Thread.Sleep(1000) (* Putting thread to sleep for 1 second to simulate processing overhead. *))
let printData (students : studentData list) =
students |> List.iter (fun x -> printfn "%A" x)
let main() =
let students = List.init 3 getStudent
printfn "Before Process:"
printData students
printfn "After process:"
registerStudents students
printData students
Console.ReadKey(true) |> ignore
main()
เมื่อคุณคอมไพล์และรันโปรแกรมจะให้ผลลัพธ์ดังต่อไปนี้ -
Before Process:
{ID = 0;
IsRegistered = false;
RegisteredText = null;}
{ID = 1;
IsRegistered = false;
RegisteredText = null;}
{ID = 2;
IsRegistered = false;
RegisteredText = null;}
After process:
{ID = 0;
IsRegistered = true;
RegisteredText = "Registered 05:39:15";}
{ID = 1;
IsRegistered = true;
RegisteredText = "Registered 05:39:16";}
{ID = 2;
IsRegistered = true;
RegisteredText = "Registered 05:39:17";}