-
Notifications
You must be signed in to change notification settings - Fork 0
/
Variablesv2.sol
49 lines (37 loc) · 1.56 KB
/
Variablesv2.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Functions{
//Public:Hem dışarıdan hem de kontrat çağırabilir.
function add(uint a, uint b) public pure returns(uint){
return a+b;
}
function add2(uint c,uint d)public pure returns(uint){
return add(c,d);
}
function publicKeyword() public pure returns (string memory){
return "Bu bir public fonksiyondur";
}
function callPublicKeyword() public pure returns(string memory){
return publicKeyword();
}
//Private :Sadece kontrat çağırabilir dışarıdan çağırılamaz
function privateKeyword() private pure returns (string memory){
return "Bu bir private fonksiyondur";
}
function callPrivateKeyword() public pure returns(string memory){
return privateKeyword();
}
//Internal: Sadece miras alan kontrat çağırabilir dışarıdan çağırılamaz.
function internalKeyword() internal pure returns(string memory) {
return "bu bir internal fonskiyondur...";
}
function callInternalKeyword() public pure returns(string memory) {
return internalKeyword();
}
// External : Burada ise dışarıdan kullanıcalar çağırabilir fakat kontrat içerisnde çağırlmaz.
function externalKeyword() external pure returns(string memory) {
return "bu bir external fonskiyondur...";
}
/*function callExternalKeyword() public pure returns(string memory) {
return externalKeyword(); Bu fonksiyon çalışmaz.Çünkü external fonksiyonlar kontrat tarafından çağırılamaz */
}