30/09/2018, 17:02

Sự khác nhau giữa Hàm(funtion) và Toán tử(operator)

Đọc bài này, Sự khác nhau giữa malloc và new, Đạt nghĩ sẽ có bạn thắc mắc sự khác nhau giữa functionoperator. Google thì ra cái link này

stackoverflow.com
sbi

Operators vs Functions in C/C++

c++
answered by sbi on 07:45AM - 02 Jun 10

Đây là câu trả lời cụ thể:

Operators are keywords with a fixed syntax. Those which can be overloaded might vary a bit in syntax, but that’s within the boundaries. The new operator is still spelled new, even when overloaded and the syntax of invoking it is always the same.

Function names are identifiers, which can be almost arbitrary. There’s no syntactic reason you couldn’t do away with malloc() and use

bool my_fancy_alloc(void*& memory, unsigned char size, bool zero_it);

instead. (Mark: There are other reasons, though. Like your fellow-workers’ sanity.)

Mọi người cho biết quan điểm của bạn về khác nhau của hai món này nhé

Tom Nguyen viết 19:13 ngày 30/09/2018

Ở tưởng 2 cái function va operator là 2 khái niệm khác nhau chứ nhỉ ?

Operator

In mathematics and sometimes in computer programming, an operator is a character that represents an action, as for example x is an arithmetic operator that represents multiplication. In computer programs, one of the most familiar sets of operators, the Boolean operators, is used to work with true/false values

Function

In C language and other programming, a function is a named procedure that performs a distinct service

Ref:

WhatIs.com

What is operator? - Definition from WhatIs.com

In mathematics, an operator is a character that represents an action, as for example x is an arithmetic operator that represents multiplication. In computers, an operator is someone who is operating the computer.


WhatIs.com

What is function? - Definition from WhatIs.com

Function is a term with at least four meanings.

Nguyễn Minh Dũng viết 19:05 ngày 30/09/2018

Ở tưởng 2 cái function va operator là 2 khái niệm khác nhau chứ nhỉ ?

Nó khác nhau chứ, nhưng ví dụ như new là toán tử và malloc lại là hàm. Tại sao lại có sự phân biệt như vậy?

Tom Nguyen viết 19:10 ngày 30/09/2018

Như vậy là ý nghĩa ra đời của nó. Tại sao lại để là toán tử thay vì hàm? Một câu hỏi sâu về kiến thức cơ bản, mình cũng rất muốn biết

Minh Hoàng viết 19:15 ngày 30/09/2018

chắc toán tử dễ dùng hơn. Ví dụ để 2+3 dễ hơn add(2,3)

Hung Nguyen Minh viết 19:10 ngày 30/09/2018

Phf hợp với tự nhiên hơn

Bài liên quan
0