android application创建不了,无法选择 compile with
1,A package name must not contain two consecutive dots. 一个包名一定不能包含两个连续的点. 2,您的 complie with 选项怎么没有选择. 3,是不是你的 ADT 插件出现了问题.
c++ “compile with: /clr /link comsuppw.lib” 中“/link comsuppw.lib”是什么意思
/link comsuppw.lib 的意思是 link 程序在执行连接操作时要连接 comsuppw.lib 库文件..lib 文件一般存储的经过编译的公用目标代码模块.
请问Android新建项目的时候compile with没法选择,是空白的.是怎么回事
是因为你没有对应的sdk版本
eclipse新建一个android项目时Compile With版本只能选择android6.0
最低版本选择4.0
为什么在compile with是空白? 安装过程中那一步出现问题?
是不是安装好了android SDK, 要启动一下SDK才可以.以下是详细步骤:
1.安装、配置JDK/JRE:安装(略),在系统环境变量PATH中添加JDK/JRE安装路径\bin,如:C:\Java\jdk1.6.0_21\bin;C:\Java\jre6\bin;
在CLASSPATH中添加JDK/JRE安装路径\bin,如:
.;C:\Java\jdk1.6.0_21\lib;C:\Java\jre6\lib;
设置完成后在命令行中输入java -version,如果得到回报当前版本,确认Java已经安装正确.
2.在系统环境变量PATH中添加adb环境变量:如:
D:\android_sdk-windows\platform-tools;D:\android_sdk-windows\tools;
*需要注意所有的路径中不能包含空格,中文!
3.在命令行中输入android, 系统便启动android SDK Manager图形界面.然后在tools/Manager AVDs../New, 在Target中能够选择到想要的SDK版本.或勾选仅install的选项,查看是否已经有想要的SDK 版本.
cpp(9) : error C2059: syntax error : ‘)’是什么意思
)语法错误
TOAD 的使用
绿色的蜘蛛表示该过程/函数Compile with debug 白色的纸张表示该过程/函数Compile without debug standard 菜单中有一个蜘蛛按钮,是toggle compiling with debug用的 点这个按钮,然后试试compile一个过程/函数就明白了
Eclipse创建APPA中,application name等选项如何填写
创建android application的过程如下
Application Name是app的名称
Project Name是在MyEclipse显示的工程名
Package Name是app安装在手机上后的包名
Minimum Required SDK是app程序限制的最低版本apk,也就是在这个版本之下不能安装此app
Target SDK是app目标版本,即app最适合运行的android版本
Compile With是编译程序的sdk版本
Theme是生成工程的主题
填好后,next
不要修改,直接Next
选择app的图标
创建默认的Activity,并制定布局
默认生成的Activity名称和布局xml文件名称,finish完成
error C2059: syntax error : ‘;’什么意思?
编译器错误 C2059语法错误 :“token”
该标记导致语法错误。
若要确定原因,则不仅要检查在错误信息中列出的行,还要检查该行上面的行。以下示例对包含左大括号的行生成了错误信息,而该错误的真正原因却出现在其上面的行中。
// C2059a.cpp
int main ) // C2059 No opening parenthesis.
{
}
如果对行的检查没有获得有关可能出现的问题的任何线索,则尝试注释掉在错误信息中列出的行以及可能出现在该行上面的若干行。
如果该错误信息在紧跟 typedef 变量的符号上出现,则检查该变量是否已在源代码中定义。
如果符号没有计算出任何结果(在使用 /Dsymbol= 编译时可能发生),则可能会获得 C2059。
// C2059b.cpp
// compile with: /DTEST=
#include int main() { #ifdef TEST printf(“\nTEST defined %d”, TEST); // C2059 #else printf(“\nTEST not defined”); #endif } 可能收到 C2059 的另一个特定原因是编译在函数的默认参数中指定了结构的应用程序。参数的默认值必须是一个表达式。初始值设定项列表(如用于初始化结构的初始值设定项列表)不是表达式。下面的示例生成 C2059: // C2059c.cpp struct ag_type { int a; float b; }; void func(ag_type arg = {5, 7.0}); // C2059 其解决方法是定义一个执行所需初始化的构造函数。 struct ag_type { int a; float b; ag_type(int aa, float bb) : a(aa), b(bb) {} }; void func(ag_type arg = ag_type(5, 7.0)); int main() { } 如果您在类外定义成员模板类或函数,也可能获得 C2059。有关更多信息,请参见知识库文章 Q241949。 转载。。。。
C++里面的tellg(),tellp()指针怎么用啊 最好附带上个程序
tellg():Reports the current read position in the stream.
tellp():Report position in output stream.
下面是msdn上的2个例子:
// basic_istream_tellg.cpp
// compile with: /EHsc
#include <iostream>
#include <fstream>
int main()
{
using namespace std;
ifstream file;
char c;
streamoff i;
file.open(“basic_istream_tellg.txt”);
i = file.tellg();
file >> c;
cout << c << ” ” << i << endl;
i = file.tellg();
file >> c;
cout << c << ” ” << i << endl;
}
// basic_ostream_seekp.cpp
// compile with: /EHsc
#include <fstream>
#include <iostream>
int main()
{
using namespace std;
ofstream x(“basic_ostream_seekp.txt”);
streamoff i = x.tellp();
cout << i << endl;
x << “testing”;
i = x.tellp();
cout << i << endl;
x.seekp(2); // Put char in third char position in file
x << ” “;
x.seekp(2, ios::end); // Put char two after end of file
x << “z”;
}