Redian新闻
>
想告中国外包公司老板压榨员工无休止加班
avatar
想告中国外包公司老板压榨员工无休止加班# Law - 律师事务所
f*e
1
【 以下文字转载自 Immigration 讨论区 】
发信人: fcwrme (fcwrme), 信区: Immigration
标 题: 485 期间换工作,要求 同一个领域 工作,请同一个领域是如何界
发信站: BBS 未名空间站 (Thu Sep 18 13:34:45 2014, 美东)
485 期间换工作,要求 同一个领域 工作,请同一个领域是如何界
大的领域相关就行,还是完全一致?
比如现在做reservoir engineer,然后跳槽到geophysicist,
我查了一下Standard Occupational Classification
reservoir engineer 算这个
http://www.bls.gov/soc/2010/soc172171.htm
17-2171 Petroleum Engineers
Devise methods to improve oil and gas extraction and production and
determine the need for new or modified tool designs. Oversee drilling and
offer technical advice.
Illustrative examples: Oil Exploration Engineer, Oil Drilling Engineer,
Natural Gas Engineer
geophysicist 是这个
http://www.bls.gov/soc/2010/soc172151.htm
17-2151 Mining and Geological Engineers, Including Mining Safety Engineers
Conduct sub-surface surveys to identify the characteristics of potential
land or mining development sites. May specify the ground support systems,
processes and equipment for safe, economical, and environmentally sound
extraction or underground construction activities. May inspect areas for
unsafe geological conditions, equipment, and working conditions. May design,
implement, and coordinate mine safety programs. Excludes "Petroleum
Engineers" (17-2171).
Illustrative examples: Mineral Engineer, Geophysical Engineer, Seismic
Engineer
当初EB1A 140 claim的是petroleum engineering领域,现在能换到geophysicist 领域
吗?
从这个分类看,这两个不是一个工作领域,但是算大的能源领域(oil and gas)
请问怎么办才好?
谢谢
avatar
v*s
2
以下代码好像都是正确的,但是我在g++和visual studio都没法compile!
compiler给的说法也很古怪。。。。
Error 1 error C2059: syntax error : '{'hashtable.h 28 hashtable
Error 2 error C2334: unexpected token(s) preceding '{'; skipping
apparent function body hashtable.h 28 hashtable
源文件:因为所有error都在这个h file文件里,我只贴这个。。。如有需要再贴CPP。
。。
文件名:hashtable.h
#include
#include
using namespace std;
// Integer Hash Table
struct Node {
int key;
int value;
Node * next;
};
class HashTable {
public:
HashTable();
~HashTable();
void insertKeyValue(int, int);
void deleteKeyValue(int);
private:
Node **table;
void resize();
int hashfunc(int);

int primept;
int SIZE;
static int primenumber[]={101,211,1009,5011,10037,50021,100003};
//static const int *primenumber= new int[] {101,211};
//int *primenumber;
//int primenumber[] = {10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0};

};
avatar
h*1
3
替朋友问一下,下面情况控告老板赢得几率?
1. 在中国人开的外包公司上班三年,几乎超过1/3的时间都在加班,而且是有一年半经
常性加班到后半夜或通宵;
2. 从没有加班费和年底bonus;
3.老板经常性的讯员工,加之以一些侮辱性的语言;经常以工作形势不好威胁员工;员
工为了一个工作或身份敢怒不敢言。
4.最近实在加班加不动了,加班少了,老板找了一个借口把朋友炒了
朋友一直想控告老板,因为身份也是忍气吞声。
请问各位大侠,怎么找相关的律师,赢得几率有多大。有无只有赢了才给钱的律师。谢
谢!
avatar
t*a
4
Your method to define the static array in the class is wrong.
You need to put the instantiation part into the .cpp file,
using a format like :
int Foo::bar[4] = {1, 2, 3, 5};

hashtable

【在 v****s 的大作中提到】
: 以下代码好像都是正确的,但是我在g++和visual studio都没法compile!
: compiler给的说法也很古怪。。。。
: Error 1 error C2059: syntax error : '{'hashtable.h 28 hashtable
: Error 2 error C2334: unexpected token(s) preceding '{'; skipping
: apparent function body hashtable.h 28 hashtable
: 源文件:因为所有error都在这个h file文件里,我只贴这个。。。如有需要再贴CPP。
: 。。
: 文件名:hashtable.h
: #include
: #include

avatar
n*k
5
咦,这不是律师们的工作状态吗?

【在 h******1 的大作中提到】
: 替朋友问一下,下面情况控告老板赢得几率?
: 1. 在中国人开的外包公司上班三年,几乎超过1/3的时间都在加班,而且是有一年半经
: 常性加班到后半夜或通宵;
: 2. 从没有加班费和年底bonus;
: 3.老板经常性的讯员工,加之以一些侮辱性的语言;经常以工作形势不好威胁员工;员
: 工为了一个工作或身份敢怒不敢言。
: 4.最近实在加班加不动了,加班少了,老板找了一个借口把朋友炒了
: 朋友一直想控告老板,因为身份也是忍气吞声。
: 请问各位大侠,怎么找相关的律师,赢得几率有多大。有无只有赢了才给钱的律师。谢
: 谢!

avatar
x*q
6
只有static const int的initialization可以在类定义里做。
即便改写成类里声明,类外定义,编译可以通过,也有运行时出错的可能。建议阅读
http://www.parashift.com/c++-faq-lite/ctors.html#faq-10.11 和后继的几个faq

hashtable

【在 v****s 的大作中提到】
: 以下代码好像都是正确的,但是我在g++和visual studio都没法compile!
: compiler给的说法也很古怪。。。。
: Error 1 error C2059: syntax error : '{'hashtable.h 28 hashtable
: Error 2 error C2334: unexpected token(s) preceding '{'; skipping
: apparent function body hashtable.h 28 hashtable
: 源文件:因为所有error都在这个h file文件里,我只贴这个。。。如有需要再贴CPP。
: 。。
: 文件名:hashtable.h
: #include
: #include

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。