搜索结果
查询Tags标签: invoke,共有 76条记录-
JDK动态代理注意事项
一个蠢问题,记一下,防止下次再犯。 今天把上周写的一个JDK动态代理的demo拿出来重写看了下,然后修改了重写的invoke方法的返回值,结果启动Main方法时就报错ClassCastException。 折腾来折腾去,愣是没找到原因,后面还是把生产的Proxy文件给复制了一份,然后修改Main方…
2022/1/31 23:12:38 人评论 次浏览 -
C++ 之 委托模式
文章目录 成员函数指针使用模板类使用多态原文地址 成员函数指针 class A{ public:void Func(int){ std::cout << "I am in A" << std::endl;} };void (A::*pFunc)(int) = &A::Fu…
2022/1/17 17:07:21 人评论 次浏览 -
C++ 之 委托模式
文章目录 成员函数指针使用模板类使用多态原文地址 成员函数指针 class A{ public:void Func(int){ std::cout << "I am in A" << std::endl;} };void (A::*pFunc)(int) = &A::Fu…
2022/1/17 17:07:21 人评论 次浏览 -
多线程和异步编程的那些事 (七)
带参数的Invoke.//【2】定义委托变量DelegateShowLabel delegateMethod;public Form1(){InitializeComponent();//【4】绑定委托delegateMethod = SetLabel;Task.Run(new Action(()=> { ThreadMethod(); }));}//【3】定义执行方法public void SetLabel(Label label,str…
2022/1/10 14:04:00 人评论 次浏览 -
多线程和异步编程的那些事 (七)
带参数的Invoke.//【2】定义委托变量DelegateShowLabel delegateMethod;public Form1(){InitializeComponent();//【4】绑定委托delegateMethod = SetLabel;Task.Run(new Action(()=> { ThreadMethod(); }));}//【3】定义执行方法public void SetLabel(Label label,str…
2022/1/10 14:04:00 人评论 次浏览 -
动态代理类理解
1.定义一个接口及其实现类;public interface Rent {public void rent(); }public class Host implements Rent{public void rent() {System.out.println("房东要出租房子!");} }2.自定义 InvocationHandler 并重写invoke方法,在 invoke 方法中我们会调用原生…
2022/1/8 6:07:12 人评论 次浏览 -
动态代理类理解
1.定义一个接口及其实现类;public interface Rent {public void rent(); }public class Host implements Rent{public void rent() {System.out.println("房东要出租房子!");} }2.自定义 InvocationHandler 并重写invoke方法,在 invoke 方法中我们会调用原生…
2022/1/8 6:07:12 人评论 次浏览 -
java.lang.NullPointerException: Cannot invoke “org.apache.ibatis.session.SqlSessionFactory.openSessi
java.lang.NullPointerException: Cannot invoke "org.apache.ibatis.session.SqlSessionFactory.openSession()" because "com.atguigu.utils.MybatisUtils.sqlSessionFactory" is null错误的创建了新的SqlSessionFactory
2022/1/6 2:06:00 人评论 次浏览 -
java.lang.NullPointerException: Cannot invoke “org.apache.ibatis.session.SqlSessionFactory.openSessi
java.lang.NullPointerException: Cannot invoke "org.apache.ibatis.session.SqlSessionFactory.openSession()" because "com.atguigu.utils.MybatisUtils.sqlSessionFactory" is null错误的创建了新的SqlSessionFactory
2022/1/6 2:06:00 人评论 次浏览 -
java.sql.SQLIntegrityConstraintViolationException: Column ‘phone‘ cannot be null
org.springframework.dao.DataIntegrityViolationException: Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column ‘phone’ cannot be null The error may exist in com/itheima/reggie/mapper/UserMapper.java (best guess) T…
2021/12/31 2:07:23 人评论 次浏览 -
java.sql.SQLIntegrityConstraintViolationException: Column ‘phone‘ cannot be null
org.springframework.dao.DataIntegrityViolationException: Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column ‘phone’ cannot be null The error may exist in com/itheima/reggie/mapper/UserMapper.java (best guess) T…
2021/12/31 2:07:23 人评论 次浏览 -
C++ invoke other class function
//This is UtilityHelper.h#include <iostream> #include <uuid/uuid.h> #include <ctime>using namespace std;class UtilityHelper {public:static char *uuidValue;static char *dtValue;UtilityHelper();~UtilityHelper();char *getUuid(); char *g…
2021/12/28 12:07:13 人评论 次浏览 -
C++ invoke other class function
//This is UtilityHelper.h#include <iostream> #include <uuid/uuid.h> #include <ctime>using namespace std;class UtilityHelper {public:static char *uuidValue;static char *dtValue;UtilityHelper();~UtilityHelper();char *getUuid(); char *g…
2021/12/28 12:07:13 人评论 次浏览 -
Unable to read class [XXXXXXX]} java.lang. ArrayIndexOutOfBoundsException
Java代码 @Component public class FcmHelper {private static final Logger log = LoggerFactory.getLogger(FcmHelper.class);private static String APP_ID = "";private static String SECRET_KEY = "";private static String CHECK_URL = "…
2021/12/17 17:19:56 人评论 次浏览 -
Unable to read class [XXXXXXX]} java.lang. ArrayIndexOutOfBoundsException
Java代码 @Component public class FcmHelper {private static final Logger log = LoggerFactory.getLogger(FcmHelper.class);private static String APP_ID = "";private static String SECRET_KEY = "";private static String CHECK_URL = "…
2021/12/17 17:19:56 人评论 次浏览