Poll: Most Americans&n…
Most Americans support tough new
measures to counter gun violence, including banning assault weapons
and posting armed guards at every school, according to
a new Washington Post-ABC News
poll.
More than half of Americans — 52
percent in the poll — say the shooting at an elementary
school in Newtown, Conn., has made them more
supportive of gun control; just 5 percent say they are now less apt
to back tighter restrictions. Most also are at least somewhat
worried about a mass shooting in their own community, with concern
jumping to 65 percent among those with school-age
children at home.
The findings, which also show broad
bipartisan support for mandatory background checks to purchase
firearms at gun shows, came as President Obama said Monday that he
will lay out specific White House
proposals on gun-control legislation and
executive actions this week.
Obama has pledged to champion broad new reforms in the wake of the
mass shooting that killed 26, including 20 children, at Sandy Hook
Elementary School in Newtown last month. He is scheduled to receive
a list of proposals Tuesday from Vice President Biden, who
is leading a task force on gun
violence.
But most congressional Republicans and some Democrats oppose
restrictive new measures, such as an assault-weapons ban.
Administration aides have said that the president is likely to call
for renewing the ban on the most powerful rifles, even in the face
of heavy opposition from the National Rifle Association. In
the poll, 58 percent of Americans support the ban, which expired in
2004 after 10 years; 39 percent oppose it.
“My starting point is not to worry about the politics but to focus
on what makes sense and what works,” Obama said at a news
conference Monday. “What should we be doing to make sure our
children are safe and reduce incidents of gun violence? We can do
it in a way that comports with the Second Amendment.”
The president declined to be specific when asked what recourse he
would have if lawmakers rejected the ban, saying that “members of
Congress must have a debate and examine their own conscience.”
A question of priorities
While the poll showed cross-party support for some potential
policies, there was a sharp divide on others, and particularly over
how much emphasis the administration and Congress should place on
addressing gun issues.
Democrats and Republicans both see the economy as the clear top
priority for federal action, but while most Democrats also rank gun
control as a high priority, few Republicans or independents agree.
Most Republicans say stricter gun laws should be lower on the list
or not a priority at all.
New York City Mayor Michael R. Bloomberg (I) on Mondaycalled on Obama and
Congressto enact strict new-gun control
measures in the wake of Newtown. And Maryland Gov. Martin O’Malley
(D) unveiled plans for an assault-rifle ban and tougher gun
licensing requirements in his state.
Recent polls have shown broadly positive sentiment for the NRA, but
the new survey reveals a far more mixed verdict on its leadership.
Some 36 percent of Americans express favorable views of the group’s
leaders, while 44 percent say they have unfavorable impressions. A
sizable share, 20 percent, say they have no opinion.
版权声明:本文为博主原创文章,未经博主允许不得转载。
Poll: Most Americans&n…的更多相关文章
- select、poll、epoll之间的区别总结
select.poll.epoll之间的区别总结 05/05. 2014 select,poll,epoll都是IO多路复用的机制.I/O多路复用就通过一种机制,可以监视多个描述符,一旦某个描述符就绪 ...
- (转载) Linux IO模式及 select、poll、epoll详解
注:本文是对众多博客的学习和总结,可能存在理解错误.请带着怀疑的眼光,同时如果有错误希望能指出. 同步IO和异步IO,阻塞IO和非阻塞IO分别是什么,到底有什么区别?不同的人在不同的上下文下给出的答案 ...
- linux下select/poll/epoll机制的比较
select.poll.epoll简介 epoll跟select都能提供多路I/O复用的解决方案.在现在的Linux内核里有都能够支持,其中epoll是Linux所特有,而select则应该是POSI ...
- select,epoll,poll比较
介绍和比较 http://www.cnblogs.com/maociping/p/5132583.html 比较 http://www.dataguru.cn/thread-336032-1-1.ht ...
- linux poll函数
poll函数与select函数差不多 函数原型: #include <poll.h> int poll(struct pollfd fd[], nfds_t nfds, int timeo ...
- poll机制
使用POLL机制代替linux输入子系统(input subsystem)之按键输入和LED控制中的异步通知,实现同样的效果. 1.代码 只简单修改input_subsys_test.c, input ...
- select、poll、epoll之间的区别总结[整理]
select,poll,epoll都是IO多路复用的机制.I/O多路复用就通过一种机制,可以监视多个描述符,一旦某个描述符就绪(一般是读就绪或者写就绪),能够通知程序进行相应的读写操作.但select ...
- IO多路复用之poll总结
1.基本知识 poll的机制与select类似,与select在本质上没有多大差别,管理多个描述符也是进行轮询,根据描述符的状态进行处理,但是poll没有最大文件描述符数量的限制.poll和selec ...
- select、poll、epoll区别总结
1 本质上都是同步I/O 三者都是I/O复用,本质上都属于同步I/O.因为三者只是负责通知应用程序什么时候数据准备好了,实际的I/O操作还是在由应用程序处理:如果是异步I/O的话,实际I/O由内核处理 ...
随机推荐
- Android-Android进程间通讯之messenger
转自‘https://www.cnblogs.com/makaruila/p/4869912.html 平时一说进程间通讯,大家都会想到AIDL,其实messenger和AIDL作用一样,都可以进行进 ...
- android菜鸟学习笔记17----Android数据存储(一)文件读写
假如有如下需求,要求能够记录用户输入的用户名和密码,下次登录时,能直接获取之前保存的用户名密码,并在相应的EditText中显示. 要保存用户输入的数据,最先想到的应该就是文件读写了. 通过对andr ...
- HTML5画布(基础篇11-10)
<script type="text/javascript"> $(function(){ var s = $("#myCanvas")[0]; v ...
- hdu 4927 java程序
/*对于本题题意非常easy 关键在于求杨辉三角时的二项式是没实用到优化,导致超时. 对于第n行的二项式的第i个可有第i-1个乘于一个数处于一个数得到,要用到大数.java比較方便. 假如n=6,i= ...
- PAT 天梯赛 L2-022. 重排链表 【数据结构】
题目链接 https://www.patest.cn/contests/gplt/L2-022 思路 先用结构体 把每个结点信息保存下来 然后深搜一下 遍历一下整个链表 然后就重新排一下 但是要注意一 ...
- HTML5/CSS3简易版俄罗斯方块游戏
在线演示 本地下载
- HDU3247 Resource Archiver —— AC自动机 + BFS最短路 + 状压DP
题目链接:https://vjudge.net/problem/HDU-3247 Resource Archiver Time Limit: 20000/10000 MS (Java/Others) ...
- 版本名称SNAPSHOT、alpha、beta、release、GA含义
Alpha:是内部测试版,一般不向外部发布,会有很多Bug.一般只有测试人员使用.Beta:也是测试版,这个阶段的版本会一直加入新的功能.在Alpha版之后推出.RC:(Release Candida ...
- Contiki 2.7 Makefile 文件(四)
3.第三部分 这里我们假设TARGET为native (1) OBJECTDIR = obj_$(TARGET) LOWERCASE = -abcdefghijklmnopqrstuvwxyz UPP ...
- js动态插入标签代码(insertAdjacentHTML)
做网页时通过ajax请求获取到数据后,有的需要把数据拼接到带有各种标签的字符串中,拼接完字符串就需要把字符串动态添加到网页上的某个位置,举个