c**********e 发帖数: 2007 | 1 If an integer array is defined as the following
int* intPtr=new int[100];
How to use the sizeof() function to get the size of the integer array? |
|
|
n**e 发帖数: 116 | 3 sizeof(intPtr)/sizeof(int) |
|
n**e 发帖数: 116 | 4 Forget my last post. It is not correct. |
|
f****4 发帖数: 1359 | 5 说个题外话
当你new int[]的时候,那个内存区域应该有地方标记了内存范围,或者是元素个数吧
?不然的话delete[]怎么才能释放正确的内存范围呢? |
|
S**I 发帖数: 15689 | 6 yes, but that's implementation defined, there is no portable way to get the
size of a dynamically allocated array. |
|
|
|
b*****i 发帖数: 262 | 9 sizeof is not a function. |
|
f*******t 发帖数: 7549 | 10 int array[] = { 1, 2, 3, 4 };
you can get array length by sizeof(array)/sizeof(int)
if the array is dynamically allocated, you can't get its length |
|
J***g 发帖数: 853 | 11 Q5:好极了,我正想了解一下成立合法私募基金的申请和程序大概需要什么条件,不知楼
主对这个了解吗........谢谢
A:不清楚,其实就是个资金管理公司,他们的资金来来源我并不清楚,据说有浙商背
景。这个投资公司除了做股市和期货做一些事情外,其实它的大部分投资都是实体,以
房地产为主,甚至有高速公路,资本市场这一块占的比例不高
Q6:能否透露下公司详细的规则要求。
A:就是这些,20%仓位以上必须处于浮盈,否则资金冻结无法加仓,20%仓位以下有自
主权。
Q7:做商品还是股指?
A:都做
Q8:能否介绍一下以前的一些经历?以及是怎么进去的?
A:我本身是学金融的,当初是去应聘的。
Q9:问下,你们会拿多少比例的资金做日内超短?
A:不会做日内短线。
Q10:楼主您好,你的同事怎样背景的居多?一个非金融专业的交易者,拿着一段时间
的交易记录去应聘的话,是否有希望?
A:相对来说,专业是学经济的还是占多数,不过也有学理工的。应该学经济的占有2/3
左右吧。如果我没记错,前面我说的那个我们这里创造个人成绩最好的是学计算机的,
所以这个应该不是主要问题,学经济的只是在入门时有更多认同。我不太清... 阅读全帖 |
|
|
z*****e 发帖数: 760 | 13 来自主题: TexasHoldem版 - 这搞笑的牌 AA VS 1010 preflop all in $800.lose
jq vs 99 flop q78 all in. turn 10, river j, $500 lose
so fuuny |
|
h*******d 发帖数: 272 | 14 KILLTEST 关于MACRO 的一系列题 我都错了 想破脑袋还是不明白
先放3道 请大家指点我一下吧 真的真的十分感谢
78
The following is submitted:
%macro print(dsn=sashelp.class, var1,var2=name);
Proc print data=&dsn;
Var&var1&var2;
Run;
%mend;
%print(dsn=sashelp.prdsale, age name, var2=height)
What is the result?
答案: the macro variable VAR1 has no value , the macro failed to compile.
为什么不是C:the value of the macro variable VAR1 is age name.
79
The following is submitted:
%macro test;
Data out;
Set sashelp.prdsale end=final;
If predict>500 then |
|
A*******s 发帖数: 3942 | 15 78. Positional parameters have to be listed before keyword parameters.
79. Call Symput routine is the only way to pass a value to a macor variable
within data step in execution time. Besides, %let total=counter; or %global
total=counter; can't even retrieve the value from data-step variable. Both
can only assign the text 'counter' to macro variable total;
80.%let statement is executed before data step is executed.(Again, Call
Symput routine is the only way to pass a value to a macor variable wit |
|
h*******d 发帖数: 272 | 16 谢谢 :-)
又见帅宝宝新照片 爸爸妈妈也一定很好看 要多更新宝宝照片啊
variable
global
see |
|
A*******s 发帖数: 3942 | 17 惭愧,孩子没长开的时候大家都说像我
现在长得越来越帅了,大家都说像他妈... |
|
h*******d 发帖数: 272 | 18 hi sorry ,but请再帮我看一道题吧
82 the following is submitted:
% macro cols1;
Name age;
%mend;
%macro cols2;
Height weight;
%mend;
Proc print data=sashelp.class;
Run;
Which VAR statement successfully completes the program and produces a report
?
答案 var height%cols1;
为什么不是: Var%cols2%cols1;
really appreciate it . |
|
A*******s 发帖数: 3942 | 19 var height %cols1 --> var height Name age;
Var %cols2 %cols1 --> var Height weight; Name age; |
|