- 浏览: 153624 次
- 性别:
- 来自: 成都
最新评论
-
zyq070:
version 自动增长的 你手动设值 相比之前的值已经变化 ...
Row was updated or deleted by another transaction (or unsaved-value mapping was -
中华神韵:
...
Java中从一个ArrayList删除重复的元素 -
Menuz:
logcat慢慢调,终会找到的。
The application has stopped unexpectedly -
右转随缘:
好抽象。。。
The application has stopped unexpectedly -
tsmg:
您好,我zend也配了,怎么就是不能正常调试呢?是不会用在EP ...
安装EPP的调试Zend Debugger
文章列表
实例变量的位置
- 博客分类:
- Objective C
@implementation Fraction
{
int numerator;
int denominator;
}
按照书中提供的例子将实例变量放到@implementation 中,但是在编译后一直出现错误:
In file included from testFraction.m:3:
Fraction.m:7: error: inconsistent instance variable specification
Fraction.m: In function '-[Fraction print]':
Fraction.m:15: error: 'numerator' unde ...
写了个例子,一直编译不过,后来确认gnustep不支持@property 和 @synthesize语法;
@property 和 @synthesize配对使用,用于生成setter和getter方法。
仅记录下。
如题;
uncaught exception: Error calling method on NPObject! [plugin exception: Error in Actionscript. Use a try/catch block to find error.]
默认actionscript中不允许向将方法注册到不同域的 html文档中, 对于这个我们只需要在as中加一下代码即可解决:
import flash.system.Security;
Security.allowDomain("*");
Security.allowInsecureDomain(&q ...
使用Flex AIR2.6开发桌面程序,添加程序自己重启或启动其他exe程序, 发现NativeProcess.isSupported一直为false。除了配置文件中<supportedProfiles>extendedDesktop</supportedProfiles>,还需要在发布的时候勾选Export as:
Signed native installer, 而不是Signed AIR package.
源代码:
NativeApplication.nativeApplication.autoExit=true;
var appFile:F ...
I met this problem and spent nearly two days to solve this problem.
At first, I was not clear about this problem. I thought it might be caused by some DLL missing in the OS. I also did not consider the situation deeply that the browsers did not always crashed when accessing all the flash website ...
好吧,我承认我已经没做java开发很久了,很多东西都很陌生了。
MyEclipse导入一个项目,并在添加到Tomcat服务器上去进行debug,启动Tomcat6, 报错:
Bad version number in .class file
版本不对!!
解决:
1. MyEclipse->Windows->Preferences->Java->Installed JREs . 确认安装了Jdk1.6
2. MyEclipse->Windows->Preferences->Java->Compiler. 确认Compiler ...
ParentAndParentDocument.mxml:
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth=& ...
最近因为项目需要建立一个基于数据驱动的系统。在做数据录入的时候需要查询数据库中已有的字段。查了一下,MySQL5之后有一个数据库叫做information_schema,存储了一些表字段信息。
利用下面的方式查出某个表中的字段列表:
mysql> use information_schema;
Database changed
mysql> select column_name from columns where table_name='employee';
+--------------+
| column_name |
+-------------- ...
在使用swffit使flash内容适应不同的分辨率,用FireFox打开时网页左部全是空白。
解决办法是在网页源代码中将包含flash内容的html元素如div中的“text-align: center;” 移除即可
在asp.net中,aspx的作用主要是显示页面布局,.cs文件是控制程序逻辑的。
并且,通过反编译工具之后会发现,在.cs中,类前的关键字partial,这说明页面对应.cs类是一个分部类,就是可以把一个类分成两块来写,或分到两个文件中去写,.cs是一部分,另一部分就是在aspx中用run=”server”属性的签标,这些标签成为.cs类的一个字段,所以我们能在aspx中能访问到这些对象。
在有请求到达服务端时,服务端就会把aspx中<%%>生成一个类(运行时产生的),并且这个类是继承对应.cs这个类的,这样也就是说,在
C#中提供了一个IFormattable接口以便实现类自定义格式化字符串。IFormattable有一个方法方法:ToString.定义如下:
String ToString(
String format,
IFormatProvider formatProvider
)
在实现类中可以根据需要这样做:
public class Racer:IFormattable{
//some fratures....
//这个是Object中的方法
public override string ToString()
{
...
将方法作为参数传递给另外一个方法,就必须把方法的细节封装在一种新的类型的对象中,即委托。委托只是一种特殊的对象类型,其特殊之处在于,我们之前定义的所有对象基本都包括数据,而委托包含的只有方法的地址。
在C#中使用一个类时,分为2个阶段。首先要定义这个类,即告诉编译器这个类由什么字段和方法组成。然后(除非使用静态方法)实例化类的一个对象。使用委托时,也需要这2个步骤。首先定义要使用的委托,对于委托,定义它就是要告诉编译器这种类型的委托代表了哪种类型的方法,然后创建该委托的一个或者多个实例。编译器在后台将创建表示该委托的一个类。
定义委托的语法如下:
delegate void Int ...
引自:http://www.cnblogs.com/sifang2004/archive/2006/07/14/450565.html
接口的描述:
1.一个接口定义了一个契约。
2.接口可以包容方法、C#属性、事件、以及索引器。
3.在一个接口声明中,我们可以声明零个或者多个成员。
4.所有接口成员的默认访问类型都是public。
5.如果在接口成员声明中包括了任何修饰符,那么会产生一个编译器错误。
原文地址:http://blog.csdn.net/jjss2006/archive/2011/01/24/6161921.aspx
在.NET的所有技术中,最具争议的恐怕是垃圾收集(Garbage Collection,GC)了。作为.NET框架中一个重要的部分,托管堆和垃圾收集机制对我们中的大部分人来说是陌生的概念 ...
使用存储过程之前先在数据库中创建存储过程:
ALTER PROCEDURE [dbo].[callRecordSimpleSelect]
-- Add the parameters for the stored procedure here
@name varchar(50)
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- Insert state ...