js 中可以把函数(方法)当做参数传递:
- <script type="text/javascript">
- var A= function (args2) {
- console.log('A start....');
- console.log('argument:\t'+args2);
- console.log('A end.');
- };
- var B= function (fn2, context) {
- console.log('B start,,,,');
- var arg22='参数';
- fn2.call(context,arg22);
- console.log('B end,');
- };
- </script>
上面时函数声明,下面是函数调用:
- <script type="text/javascript">
- B(A);
- </script>
把函数A 作为参数传递给B.
执行结果:
执行序列如下:
还有一种方式:
- var A= function (args2) {
- console.log('A start....');
- console.log('argument:\t'+args2);
- console.log('A end.');
- };
- var B= function (fn2, context) {
- console.log('B start,,,,');
- var arg22='参数';
- fn2(arg22);
- console.log('B end,');
- };
执行结果相同.
类似的函数调用函数的例子:
- if (evtType == 'focus' && settings.focus_callback && typeof settings.focus_callback === 'function') {
- e = e || window.event || arguments.callee.caller.arguments[0];
- settings.focus_callback(e);
- }
那么Java中可以把函数当做参数传递吗?
不行!!!
那么java中可以当做参数传递的有哪些呢?
(1)数据类型,比如int,String,List
(2)自定义对象,比如Student,Person,School等
那么有时候真的需要把方法当做参数传递,例如:
(1)监听界面用户操作,比如监听用户点击事件,需要给这个监听器传递一个回调方法X,即监听到用户点击之后就执行方法X
(2)代理,比如有个代理,需要传入两个函数,分别在代理实际方法前后执行
- public class Main {
- public void B(A a){
- System.out.println("B start,,,,");
- String arg22="参数";
- a.callback(arg22);
- System.out.println("B end,");
- }
- public static void main(String[] args) {
- new Main().B(new A());
- }
- }
- class A{
- public void callback(String args2){
- System.out.println("A start....");
- System.out.println("argument:\t"+args2);
- System.out.println("A end.");
- }
- }
相当于方法B 调用了方法callback.
进一步优化:
- package com;
- public class Main {
- public void B(A a){
- System.out.println("B start,,,,");
- String arg22="参数";
- a.callback(arg22);
- System.out.println("B end,");
- }
- public static void main(String[] args) {
- new Main().B(new A(){
- public void callback(String args2){
- System.out.println("A start....");
- System.out.println("argument:\t"+args2);
- System.out.println("A end.");
- }
- });
- }
- }
- interface A{
- public void callback(String args2);
- }
是不是很像事件监听器呢?
- qrComboBox.addItemListener(new ItemListener()
- {
- @Override
- public void itemStateChanged(ItemEvent arg0)
- {
- String selectedPic=(String)qrComboBox.getSelectedItem();
- if(!ValueWidget.isNullOrEmpty(selectedPic)){
- inputQRTextArea.setText(selectedPic);
- generateQRAction(false);
- System.out.println("addItemListener");
- }
- }
- });