最新发布 第36页

Code Bye技术改变世界,梦想驱动人生!

J2EE

关于springMVC 使用aop监测时间问题

关于springMVC 使用aop监测时间问题
本人需要用aop去统计service 的运行时间  用的是springMVC 配置文件里自动扫描是到controller 本人该怎么在aop里去找到service 解决方案 40 引用: Quote: 引用: Quote: 引用: Quote: 引用: 不是用切入点表达式配置吗? @Around(“execution (*……继续阅读 »

8年前 (2017-05-05) 2135浏览 0个赞

.Net技术

C# 跨线程控制 ToolStripMenuItem

C# 跨线程控制 ToolStripMenuItem
由于ToolStripMenuItem没有InvokeRequired属性,所以委托事件不知道怎么写。请教! 解决方案 5 请不要截图 谢谢 app.Current.Dispatch.beginInvoke(new Action(()=>{ //跨线程操作 b.Enable = false; })); 结题拿分 10 TSM_select.Begin……继续阅读 »

8年前 (2017-05-05) 2362浏览 0个赞

C语言

strcpy()崩溃

strcpy()崩溃
下面的代码实在搞不懂为什么会崩溃,应该是strcpy的问题 #include <stdio.h>  #include <string.h> typedef struct T { char *name; int num; }test; int main() { test *p = (test*)malloc(sizeof(test……继续阅读 »

8年前 (2017-05-05) 1678浏览 0个赞

C语言

关于strcpy()的一个疑问

关于strcpy()的一个疑问
刚刚明白了 #include <stdio.h>  #include <string.h>   typedef struct T {     char *name;     int num; }test;   int main() {     test *p = (test*)malloc(sizeof(test));     str……继续阅读 »

8年前 (2017-05-05) 1245浏览 0个赞