函式的基本使用

2022-07-24 09:27:11 字數 1059 閱讀 7278

​ 函式就是一種工具,「事先準備工具」的過程就是函式的定義,「拿來就用」就是函式的呼叫

​ 函式可以重複呼叫

​ 1.防止**冗餘

​ 2.**的可讀性差

定義函式————「製造工具」

呼叫函式————「使用工具」

函式的使用原則:先定義,後呼叫

函式的命名規範和變數名一樣

def index(引數1,引數2...):	#def(關鍵字) index(函式名)

"""描述注釋"""

函式體return 值

index() #呼叫函式

​ 1.def:定義函式的關鍵字

3. 括號:括號內定義引數,引數是可有可無的,且無需指定引數的型別

5. 描述注釋:描述函式功能,引數介紹等資訊的文件,不是必要的,但可以增強函式的可讀性

6. 函式體,由語句和表示式組成

7. return值:定義函式的返回值,return是可有可無的

def index():

print('hello world')

index()

def login():

""""""

pass #函式體為pass代表什麼都不做,稱之為空函式

def my_min(x,y):

res = x if x < y else y

return res

# 定義階段

def foo():

print('in the foo')

bar()

def bar():

print('in the bar')

# 呼叫階段

foo()

return:是乙個函式結束的標誌,函式體**只要執行到return,函式執行結束,並把return後定義的值作為本次呼叫的結果返回

Swift 函式的基本使用

main.swift testfunctions created by 朱立志 on 14 6 11.import foundation println hello,world 單個引數輸入函式 func sayhello personname string string println sayhe...

c oci函式的基本使用

oci函式的基本使用oracle呼叫介面 oracle call inte ce簡稱oci 提供了一組可對oracle資料庫進行訪問的界面子例程 函式 通過在第三代程式語言 如c語言 中進行呼叫可達到訪問oracle資料庫的目的。引入庫 include h 定義變數 ocienv envhp 環境控...

基本IO函式的使用

摘要 本文簡單介紹檔案操作的三個函式 open,read,write 的基本用法。詳細說明了open函式的用法。所需標頭檔案 include include include 函式定義 int open const char pathname,int flags int open const char...