sybmian s60 的armi、 thumb编译器不支持全局变量(包括静态成员变量)

查找全局变量的方法

创建find_statics.bat文件内容如下:

rem ------ start of find_statics.bat ------

@echo off

for /R %%f in (*.o) do ( echo %%f & nm %%f > tmp.txt & find /I " d " < tmp.txt & find /I " b " < tmp.txt & find /I " g " < tmp.txt )

del /f tmp.txt 2> NULL:

rem ------ end of find_statics.bat ------

build以后将find_statics.bat放到 \Symbian\6.1\Series60\Epoc32\BUILD\yourapp\GROUP

目录下并在该目录下运行即可。

不支持全局变量的原因可参考如下文档

Why doesn't Symbian OS support writeable static data
http://www3.symbian.com/faq.nsf/45aef46f9a8a61f9802569de0067eb63/71c212db06dce71380256d6e005ad2a8?OpenDocument

Does Symbian OS provide support for writeable static data (WSD)?
http://www3.symbian.com/faq.nsf/0/0840F25CBF63333680256FCC0063B5F3?OpenDocument

Writeable static data in DLLs
http://www.symbian.com/developer/techlib/v70docs/sdl_v7.0/doc_source/DevGuides/EssentialIdioms/StaticData.html#idioms%2estaticdata


如果你只是想定义一些可以随时随地访问的变量, 能想到的解决方案(推荐3):

1. 定义一个专门的数据类存放这些变量, 然后把该类对象(的引用)传来传去.

2.把这个变量定义成AppUi类的私有成员,并为它写公共的访问函数
// CMyAppUi
public: // new methods
TInt Share(); // return iShare

private:
TInt iShare;

通过下面的方式访问这个变量:
CMyAppUi* appUi = (CMyAppUi*)CCoeEnv::Static()->AppUi();
appUi->Share(); // :)

3. 跟2类似, 不过是使用自己定义的单态类,例子如下:
// DataSingleton.h: interface for the CDataSingleton class.
#include "e32base.h"

class CDataSingleton : public CBase 
{
public: // constructor and destructor
 static CDataSingleton* NewL();
 virtual ~CDataSingleton();
private: // constructors
 CDataSingleton(); // private because of the singleton pattern; it is
// guaranteed that only NewL will call it
 void ConstructL();
};


// DataSingleton.cpp: implementation of the CDataSingleton class.
//
//

#include "DataSingleton.h"
//
// Construction/Destruction
//
CDataSingleton::CDataSingleton()
{
}

CDataSingleton::~CDataSingleton()
{

}

void CDataSingleton::ConstructL()
{

}

CDataSingleton* CDataSingleton::NewL()
{
 CDataSingleton* singleton;
 // Check thread local storage:
 if ( Dll::Tls() == NULL )
 {
  // TLS is still null, which means that no CMySingleton has
  // been instantiated yet. Do so now, and return that
  // instance:
  singleton = new ( ELeave ) CDataSingleton();
  CleanupStack::PushL( singleton );
  singleton->ConstructL();
  CleanupStack::Pop( singleton );
  // Store a pointer to the new instance in thread local storage:
  TInt err = Dll::SetTls( static_cast( singleton ) );
  if ( err == KErrNone )
  {
   return singleton;
  }
  else
  {
   delete singleton;
   User::Leave( err );
   return NULL;
  }
 }
 else
 {
  // CMySingleton has been instantiated once already, so return
  // that instance:
  singleton = static_cast( Dll::Tls() );
  return singleton;
 }
}

注:此方法限于同一个线程中使用该单态类,如果想在新线程中使用,可在新线程中用Dll::SetTls( static_cast( singleton ) )设置Tls

4. EXE里可以有writable static data, 所以可以把相关功能封装到一个server里, 然后app应用程序访问此server.


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值