View Functions

函数声明为视图,将无权修改状态

pragma solidity ^0.4.16;

contract C {
function f(uint a, uint b) public view returns (uint) {
return a * (b + 42) + now;
}
} 以下操作属违规操作
1. Writing to state variables.
2. Emitting events.
3. Creating other contracts.
4. Using selfdestruct.
5. Sending Ether via calls.
6. Calling any function not marked view or pure.
7. Using low-level calls.
8. Using inline assembly that contains certain opcodes.

Pure Functions

函数声明为视图,将无权读取或者修改状态

pragma solidity ^0.4.16;

contract C {
function f(uint a, uint b) public pure returns (uint) {
return a * (b + 42);
}
} 以下操作属违规操作
1. Reading from state variables.
2. Accessing this.balance or <address>.balance.
3. Accessing any of the members of block, tx, msg (with the exception of msg.sig and msg.data).
4. Calling any function not marked pure.
5. Using inline assembly that contains certain opcodes.

Fallback Function

合约可以有一个匿名函数,这个函数不能有参数,也不能返回结果。假如没有函数匹配给定的函数标识,合约将调用。
函数在合约收到以太后执行,另外,为了能接收以太,回退函数必须使用关键字payable。这次调用花费很少,大约2300 gas pragma solidity ^0.4.0; contract Test {
// This function is called for all messages sent to
// this contract (there is no other function). // Sending Ether to this contract will cause an exception,
// because the fallback function does not have the `payable`
// modifier.
uint x; function() public {
x = 1;
}
} // This contract keeps all Ether sent to it with no way to get it back.
contract Sink {
function() public payable {}
} contract Caller {
function callTest(Test test) public {
test.call(0xabcdef01);
// hash does not exist results in test.x becoming == 1. // The following will not compile, but even if someone sends ether to that contract,
// the transaction will fail and reject the Ether.
//test.send(2 ether);
}
}

最新文章

  1. erlang 故障排查工具
  2. gcc 常用命令行及解释
  3. Bootstrap之表格checkbox复选框全选
  4. IOS中用UIStoryBoard类初始化/跳转控制器
  5. PC-1500与PC通讯
  6. java入门第一步之完成jdk的安装(window)【转】
  7. Sublime Text 2/3中Autoprefixer失效解决方法
  8. Byte measurements
  9. Android开发:最详细的 NavigationDrawer 开发实践总结
  10. AFNetworking GET和POST请求
  11. HTML之事件处理程序
  12. java大数BinInteger
  13. ABR与ASBR区别
  14. angularjs学习第五天笔记(第二篇:表单验证升级篇)
  15. Failed to start component [StandardEngine[Tomcat].StandardHost[localhost]]
  16. 传的参数是url地址时需要特殊处理
  17. 数据库连接的WEB登录界面的实现
  18. How_Require_Extensions_Work
  19. wordpress---page页面数据调用
  20. VS2010程序打包操作--超详细

热门文章

  1. 栈和递归的关系 144:Binary Tree Preorder Traversal
  2. (转)博弈 SG函数
  3. do while循环
  4. ButtonAddListener监听按钮点击事件
  5. express遇到的问题
  6. 岛屿问题求最短路径(DFS)
  7. 关于重定向printf出错 Error[Pe020]: identifier &quot;FILE&quot; is undefined 解决方案
  8. STM32Cubemx出现工程突然自动退出的问题
  9. log4j整理
  10. Find command usage in Linux with excellent examples--reference