ใน JavaScript:
function getTopCustomersOfTheYear(howManyCustomers, whichYear) {
// Some code here.
}
getTopCustomersOfTheYear(50, 2010);
ใน C #:
public List<Customer> GetTopCustomersOfTheYear(int howManyCustomers,
int whichYear)
{
// Some code here
}
List<Customer> customers = GetTopCustomersOfTheYear(50, 2010);
ใน PHP:
public function getTopCustomersOfTheYear($howManyCustomers, $whichYear)
{
// Some code here
}
$customers = getTopCustomersOfTheYear(50, 2010);
มีภาษาใดบ้างที่สนับสนุนไวยากรณ์นี้:
function GetTop(x)CustomersOfTheYear(y)
{
// Some code here
}
returnValue = GetTop(50)CustomersOfTheYear(2010);
รูปแบบการเขียนฟังก์ชั่นอ่านง่ายขึ้นหรือไม่
อัปเดต:สาเหตุที่ฉันถามคำถามนี้คือฉันกำลังเขียนบทความเกี่ยวกับไวยากรณ์ใหม่สำหรับภาษาใหม่ อย่างไรก็ตามฉันคิดว่าการมีไวยากรณ์ดังกล่าวสำหรับวิธีการประกาศอาจดีกว่าและเป็นมิตรกับนักพัฒนาและจะลดการเรียนรู้ของภาษาเนื่องจากการใกล้ชิดกับภาษาธรรมชาติมากขึ้น ฉันแค่อยากจะรู้ว่าคุณสมบัตินี้ได้รับการพิจารณาแล้วหรือไม่
'hello world' indexOf: $o startingAt: 6
Rectangle width: 100 height: 200
Btw. เกิดอะไรขึ้นกับคำถามนี้
returnValue = GetTop(50, CustomersOfTheYear(2010))
ซึ่งฉันคิดว่าสามารถอ่านได้เท่า ๆ กันและมีความยืดหยุ่นมากกว่าเดิม / เป็นมุมฉาก ... และใช่มันเป็นไวยากรณ์ปกติธรรมดา